diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-07 12:17:10 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-07 15:16:31 +0100 |
commit | 7e46fc81d4907bef974a7234db84f8177aefd82c (patch) | |
tree | 2ea4f93a4e396b88ed5d7c2a5ad08e07f5a0e588 /meta/recipes-devtools | |
parent | 647713050b091e55497aee5647b6d0d0abc08411 (diff) | |
download | openembedded-core-7e46fc81d4907bef974a7234db84f8177aefd82c.tar.gz openembedded-core-7e46fc81d4907bef974a7234db84f8177aefd82c.tar.bz2 openembedded-core-7e46fc81d4907bef974a7234db84f8177aefd82c.zip |
pseudo: Honour the NO32LIBS variable
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 4cb483ea60..55055fa0d3 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb @@ -6,7 +6,7 @@ LICENSE = "LGPL2.1" DEPENDS = "sqlite3" PV = "0.0+git${SRCPV}" -PR = "r14" +PR = "r15" SRC_URI = "git://github.com/wrpseudo/pseudo.git;protocol=git \ file://static_sqlite.patch" @@ -22,8 +22,10 @@ do_configure () { : } +NO32LIBS ??= "0" + do_compile () { - if [ "${SITEINFO_BITS}" == "64" -a -e "/usr/include/gnu/stubs-32.h" -a "${PN}" == "pseudo-native" ]; then + if [ "${SITEINFO_BITS}" == "64" -a -e "/usr/include/gnu/stubs-32.h" -a "${PN}" == "pseudo-native" -a "${NO32LIBS}" != "1" ]; then # We need the 32-bit libpseudo on a 64-bit machine... ./configure --prefix=${prefix} --with-sqlite=${STAGING_DIR_TARGET}${exec_prefix} --bits=32 oe_runmake 'CFLAGS=-m32' 'LIB=lib/pseudo/lib' libpseudo @@ -36,7 +38,7 @@ do_compile () { do_install () { oe_runmake 'DESTDIR=${D}' 'LIB=lib/pseudo/lib$(MARK64)' install - if [ "${SITEINFO_BITS}" == "64" -a -e "/usr/include/gnu/stubs-32.h" -a "${PN}" == "pseudo-native" ]; then + if [ "${SITEINFO_BITS}" == "64" -a -e "/usr/include/gnu/stubs-32.h" -a "${PN}" == "pseudo-native" -a "${NO32LIBS}" != "1" ]; then mkdir -p ${D}${prefix}/lib/pseudo/lib cp lib/pseudo/lib/libpseudo.so ${D}${prefix}/lib/pseudo/lib/. fi |