Browse Source

fix(osx): Allow rebuild using build script

Was failing if directory was already present on -i
reviewable/pr6208/r2
Anthony Bilinski 5 years ago
parent
commit
56151ea6fd
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      osx/qTox-Mac-Deployer-ULTIMATE.sh

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

@ -69,7 +69,7 @@ build_toxcore() { @@ -69,7 +69,7 @@ build_toxcore() {
[[ $TRAVIS != true ]] \
&& sleep 3
mkdir _build && cd _build
mkdir -p _build && cd _build
fcho "Starting cmake ..."
#Make sure the correct version of libsodium is used
cmake -DBOOTSTRAP_DAEMON=OFF -DLIBSODIUM_CFLAGS="-I${LS_DIR_VER}/include/" -DLIBSODIUM_LDFLAGS="L${LS_DIR_VER}/lib/" -DCMAKE_INSTALL_PREFIX="${LIB_INSTALL_PREFIX}" ..

Loading…
Cancel
Save