mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(osx-script): remove unnecessary usage of sudo
Neither toxcore or filter_audio require `sudo` to be installed under `libs/`.
This commit is contained in:
parent
6c0fb9a0f5
commit
e5e4d561c9
|
@ -77,7 +77,7 @@ function build_toxcore() {
|
|||
fcho "Compiling toxcore."
|
||||
make > /dev/null || exit 1
|
||||
fcho "Installing toxcore."
|
||||
sudo make install > /dev/null || exit 1
|
||||
make install > /dev/null || exit 1
|
||||
}
|
||||
|
||||
function install() {
|
||||
|
@ -144,7 +144,7 @@ function install() {
|
|||
cd $FA_DIR
|
||||
fi
|
||||
fcho "Installing filter_audio."
|
||||
sudo make install PREFIX="${LIB_INSTALL_PREFIX}"
|
||||
make install PREFIX="${LIB_INSTALL_PREFIX}"
|
||||
|
||||
# toxcore build
|
||||
if [[ $TRAVIS = true ]]; then #travis check
|
||||
|
|
Loading…
Reference in New Issue
Block a user