summaryrefslogtreecommitdiff
path: root/make-macosx-app.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make-macosx-app.sh')
-rwxr-xr-xmake-macosx-app.sh2
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}"