diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-04-27 11:47:28 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-27 11:54:01 -0700 |
commit | b9e57dbeab45802c7fae9f1849f01af77ff79493 (patch) | |
tree | 4745e392d64e4cbee4041d610b170d9e5c87c0a3 /packaging | |
parent | 028299193ad24cc6bfa52fa15e2e16a398c5bed2 (diff) | |
download | subsurface-b9e57dbeab45802c7fae9f1849f01af77ff79493.tar.gz |
iOS: fix typo in build script
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/ios/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh index e8a693c51..fb5ec5cf8 100644 --- a/packaging/ios/build.sh +++ b/packaging/ios/build.sh @@ -347,7 +347,7 @@ popd # now combine the libraries into fat libraries rm -rf install-root cp -a install-root-x86_64 install-root -if [ "$TARGET" = "iphoneos"] ; then +if [ "$TARGET" = "iphoneos" ] ; then pushd install-root/lib for LIB in $(find . -type f -name \*.a); do lipo ../../install-root-armv7/lib/$LIB ../../install-root-arm64/lib/$LIB ../../install-root-x86_64/lib/$LIB -create -output $LIB |