1
0
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:
Zetok Zalbavar 2016-02-25 06:48:36 +00:00
parent 6c0fb9a0f5
commit e5e4d561c9
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -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