diff options
author | jeremiah sypult <jeremiah@sypult.com> | 2013-07-18 10:49:01 -0500 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2014-06-17 17:43:33 +0100 |
commit | 477843a15c4277b81d75c4779106b5c9a81cb866 (patch) | |
tree | 1d45fff824d383b4a28429c2bb931d8801012c9c | |
parent | 9fd4d49c178c4f53b3a24df9be52a87b0deca164 (diff) |
Fix make-macosx-app.sh to make bundle on non-Mac OS X platforms
-rwxr-xr-x | make-macosx-app.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-macosx-app.sh b/make-macosx-app.sh index aa3aaae6..4ed57d61 100755 --- a/make-macosx-app.sh +++ b/make-macosx-app.sh @@ -116,7 +116,7 @@ HAS_LIPO=`command -v lipo` HAS_CP=`command -v cp` # if lipo is not available, we cannot make a universal binary, print a warning -if [ ! -x "${HAS_LIPO}" ]; then +if [ ! -x "${HAS_LIPO}" ] && [ "${CURRENT_ARCH}" == "" ]; then CURRENT_ARCH=`uname -m` if [ "${CURRENT_ARCH}" == "i386" ]; then CURRENT_ARCH="x86"; fi echo "$0 cannot make a universal binary, falling back to architecture ${CURRENT_ARCH}" |