diff options
author | jan Iversen <jani@libreoffice.org> | 2018-06-06 13:53:22 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-06-07 18:43:17 +0200 |
commit | 771bd4bce463e65199e1a065137e479c7d977b36 (patch) | |
tree | e931fc95d627938ba55552477cd3f752202cdbe8 | |
parent | 2e8f5066357cbfb1d1778a3a2abf62c021951fef (diff) | |
download | subsurface-771bd4bce463e65199e1a065137e479c7d977b36.tar.gz |
iOS: move get-dep-lib outside ARCH loop
Fetch all 3rd party libs before entering ARCH loop
Signed-off-by: Jan Iversen <jani@apache.org>
-rwxr-xr-x | packaging/ios/build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh index 195bfeaf9..eb404f660 100755 --- a/packaging/ios/build.sh +++ b/packaging/ios/build.sh @@ -73,6 +73,9 @@ popd # now build all the dependencies for the three relevant architectures (x86_64 is for the simulator) +# get all 3rd part libraries +../../scripts/get-dep-lib.sh ios . + for ARCH in $ARCHS; do echo next building for $ARCH @@ -124,8 +127,6 @@ echo next building for $ARCH target=$ARCH hosttarget=$ARCH - ../../scripts/get-dep-lib.sh ios . - # libxslt have too old config.sub pushd libxslt autoreconf --install |