summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2011-08-11 13:14:14 +1000
committerQt by Nokia <qt-info@nokia.com>2011-08-11 05:21:47 +0200
commit7ebfe33e38a81f2a47bb251e093aeb718dbe34e6 (patch)
treeca36116bf17e228f66f879e662e13300f66ac563 /configure
parent661fcee7791a5c19c14ba87b60aaf2b46db19422 (diff)
configure: fixed usage of rpath on mac
This logic should be used for all mac platforms. Currently it is erroneously skipped for qpa on mac. Change-Id: Ibc8e0bb38d4c08f48292639c614bc328c703b1bc Reviewed-on: http://codereview.qt.nokia.com/2836 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 28e3d3aab0..f4691e12c2 100755
--- a/configure
+++ b/configure
@@ -7311,7 +7311,7 @@ fi
[ '!' -z "$L_FLAGS" ] && QMakeVar add QMAKE_LIBDIR_FLAGS "$L_FLAGS"
[ '!' -z "$l_FLAGS" ] && QMakeVar add LIBS "$l_FLAGS"
-if [ "$PLATFORM_MAC" = "yes" ]; then
+if [ "$CFG_ARCH" = "macosx" ]; then
if [ "$CFG_RPATH" = "yes" ]; then
QMAKE_CONFIG="$QMAKE_CONFIG absolute_library_soname"
fi