Browse Source

fix(osx-script): remove unnecessary usage of `sudo`

Neither toxcore or filter_audio require `sudo` to be installed under
`libs/`.
pull/2977/head
Zetok Zalbavar 10 years ago
parent
commit
e5e4d561c9
No known key found for this signature in database
GPG Key ID: C953D3880212068A
  1. 4
      osx/qTox-Mac-Deployer-ULTIMATE.sh

4
osx/qTox-Mac-Deployer-ULTIMATE.sh

@ -77,7 +77,7 @@ function build_toxcore() { @@ -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() { @@ -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…
Cancel
Save