diff options
author | Eric Bénard <eric@eukrea.com> | 2012-01-25 18:22:33 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-01 14:58:45 +0000 |
commit | 4ccae37db1aa77a1d15098c3720ea6e2d383fbdc (patch) | |
tree | f9d371d389b87e6882f0bb858629a5f24158a380 /meta/recipes-qt/qt4/qt-4.8.0 | |
parent | df5e886be059da35fb69710c79227cc768f1c58e (diff) | |
download | openembedded-core-4ccae37db1aa77a1d15098c3720ea6e2d383fbdc.tar.gz openembedded-core-4ccae37db1aa77a1d15098c3720ea6e2d383fbdc.tar.bz2 openembedded-core-4ccae37db1aa77a1d15098c3720ea6e2d383fbdc.zip |
qt4-tools-nativesdk-4.8.0: fix build
the build is actually failing because host g++ and ld are used to
compile and link
Signed-off-by: Eric Bénard <eric@eukrea.com>
Diffstat (limited to 'meta/recipes-qt/qt4/qt-4.8.0')
-rw-r--r-- | meta/recipes-qt/qt4/qt-4.8.0/configure-lflags.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt-4.8.0/configure-lflags.patch b/meta/recipes-qt/qt4/qt-4.8.0/configure-lflags.patch new file mode 100644 index 0000000000..d74f7fde1a --- /dev/null +++ b/meta/recipes-qt/qt4/qt-4.8.0/configure-lflags.patch @@ -0,0 +1,18 @@ +qt4-tools-native: set LFLAGS to pick up zlib from staging + +Original Author: Jeremy Lainé <jeremy.laine@m4x.org> +Upstream-Status: Pending + +Index: qt-everywhere-opensource-src-4.8.0/configure +=================================================================== +--- qt-everywhere-opensource-src-4.8.0.orig/configure ++++ qt-everywhere-opensource-src-4.8.0/configure +@@ -611,7 +611,7 @@ fi + # initalize variables + #------------------------------------------------------------------------------- + +-SYSTEM_VARIABLES="RANLIB STRIP OBJDUMP LD CC CXX CFLAGS CXXFLAGS LDFLAGS" ++SYSTEM_VARIABLES="RANLIB STRIP OBJDUMP LD CC CXX CFLAGS CXXFLAGS LDFLAGS LFLAGS" + for varname in $SYSTEM_VARIABLES; do + qmakevarname="${varname}" + # use LDFLAGS for autoconf compat, but qmake uses QMAKE_LFLAGS |