diff options
author | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-08-04 22:59:04 +0000 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-08-04 22:59:04 +0000 |
commit | 8466838635bbb50ecc61cde0e8fe11942bf3d93f (patch) | |
tree | 954b05cf6da7d78a7233edbf06fdcbc3ac2aa3d9 /recipes/libtool/libtool-sdk_2.2.4.bb | |
parent | a90e9a08275bf5cdad4f439c66beca928e453cad (diff) | |
parent | 2880b3877d38bfaa4056af6df7f122a64e955292 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/libtool/libtool-sdk_2.2.4.bb')
-rw-r--r-- | recipes/libtool/libtool-sdk_2.2.4.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes/libtool/libtool-sdk_2.2.4.bb b/recipes/libtool/libtool-sdk_2.2.4.bb index e92c4dbfaf..f2c3c628b0 100644 --- a/recipes/libtool/libtool-sdk_2.2.4.bb +++ b/recipes/libtool/libtool-sdk_2.2.4.bb @@ -1,7 +1,7 @@ require libtool.inc require libtool_${PV}.bb -PR = "r1" +PR = "r2" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libtool-${PV}" SRC_URI_append = " file://cross_compile.patch;patch=1" @@ -9,6 +9,11 @@ S = "${WORKDIR}/libtool-${PV}" inherit sdk +# skip ac_cv_... setting for cross build: host paths must be used +do_configure_prepend () { + export LIBTOOL_BB_DO_NOT_SET_PATHS=1 +} + do_install () { install -d ${D}${bindir}/ install -m 0755 libtool ${D}${bindir}/ |