aboutsummaryrefslogtreecommitdiffstats
path: root/macosx-setup.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-10-23 08:07:28 +0000
committerGuy Harris <guy@alum.mit.edu>2013-10-23 08:07:28 +0000
commitcf1d4bbee1c0c7b7040e10d720173f369bd34c36 (patch)
tree2ec91e052fa5b7435722c51cf2565954ff48259c /macosx-setup.sh
parent853321827577de7461078f62be5de7899520f7de (diff)
Pass -sdk, not that it actually *works*.
svn path=/trunk/; revision=52782
Diffstat (limited to 'macosx-setup.sh')
-rwxr-xr-xmacosx-setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx-setup.sh b/macosx-setup.sh
index 0cb3e7dc05..5b6c63454a 100755
--- a/macosx-setup.sh
+++ b/macosx-setup.sh
@@ -870,7 +870,7 @@ qt)
#
tar xf qt-everywhere-opensource-src-$QT_VERSION.tar.gz
cd qt-everywhere-opensource-src-$QT_VERSION
- ./configure -platform $TARGET_PLATFORM -opensource -confirm-license -no-c++11
+ ./configure -sdk macosx$min_osx_target -platform $TARGET_PLATFORM -opensource -confirm-license -no-c++11
make || exit 1
$DO_MAKE_INSTALL || exit 1
cd ..