diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-20 09:52:26 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-20 08:12:10 -0700 |
commit | aab33694f2c76378f975dc614d6090456b6147c4 (patch) | |
tree | a46b8af95aab707b7bcb691e9523a4d955b9a978 | |
parent | d8227c4a70c62bb025469cac6987368ca7fe2c2f (diff) | |
download | subsurface-aab33694f2c76378f975dc614d6090456b6147c4.tar.gz |
build-system: corrected -build-deps problem
Missed a "cd $SRC" so when building with
-build-deps the script broke
Signed-off-by: Jan Iversen <jani@apache.org>
-rwxr-xr-x | scripts/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index bf02b101a..edba083e0 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -222,7 +222,7 @@ if [[ $PLATFORM = Darwin && "$BUILD_DEPS" == "1" ]] ; then # when building distributable binaries on a Mac, we cannot rely on anything from Homebrew, # because that always requires the latest OS (how stupid is that - and they consider it a # feature). So we painfully need to build the dependencies ourselves. - + cd $SRC ./subsurface/scripts/get-dep-lib.sh single . libzip pushd libzip mkdir -p build |