qt5: drop 'unset LD', qmake should now handle QMAKE_LINK correctly

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Martin Jansa 2013-05-06 13:10:39 +02:00
parent c46260790e
commit 1c29e5de8d
4 changed files with 0 additions and 12 deletions

View File

@ -18,9 +18,6 @@ do_configure() {
set_arch
set_endian
# Avoid problems with the linkers, since we want the linker to be g++
unset LD
# Similar logic is in autotools.bbclass
if [ -d ${B} -a "${S}" != "${B}" ] ; then
# Existing separate build directory, exists, remove

View File

@ -81,9 +81,6 @@ do_configure_prepend() {
rm -rf "${B}/*"
fi
# Avoid setting QMAKE_LINK from LD (since we want the linker to be g++)
unset LD
(echo o; echo yes) | ${S}/configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
bin/qmake ${OE_QMAKE_DEBUG_OUTPUT} ${S} -o Makefile || die "Configuring qt with qmake failed. EXTRA_OECONF was ${EXTRA_OECONF}"
}

View File

@ -94,9 +94,6 @@ do_configure() {
set_arch
set_endian
# Avoid problems with the linkers, since we want the linker to be g++
unset LD
# Similar logic is in autotools.bbclass
if [ -d ${B} -a "${S}" != "${B}" ] ; then
# Existing separate build directory, exists, remove

View File

@ -27,9 +27,6 @@ do_configure() {
rm -rf "${B}/*"
fi
# Avoid setting QMAKE_LINK from LD (since we want the linker to be g++)
unset LD
${OE_QMAKE_QMAKE} ${OE_QMAKE_DEBUG_OUTPUT} -r ${S}
}