diff options
author | Stanislav Brabec <utx@penguin.cz> | 2009-08-03 15:01:12 +0000 |
---|---|---|
committer | utx@penguin.cz <utx@penguin.cz> | 2009-08-03 15:01:12 +0000 |
commit | daf5409a75e97aa5a60b11e9f150e2532676889e (patch) | |
tree | 8701308ab7771fbe851a2d42ec0619f9d8ec0e71 /recipes/libtool/libtool-cross_2.2.4.bb | |
parent | 1b00e69d8b781394edadadd641b4adf8fc972988 (diff) |
libtool: Do not use target paths to grep and sed for cross and sdk builds.
Diffstat (limited to 'recipes/libtool/libtool-cross_2.2.4.bb')
-rw-r--r-- | recipes/libtool/libtool-cross_2.2.4.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes/libtool/libtool-cross_2.2.4.bb b/recipes/libtool/libtool-cross_2.2.4.bb index fab8aa4d42..dd8b598fde 100644 --- a/recipes/libtool/libtool-cross_2.2.4.bb +++ b/recipes/libtool/libtool-cross_2.2.4.bb @@ -1,6 +1,6 @@ require libtool.inc require libtool_${PV}.bb -PR = "r23" +PR = "r24" SRC_URI += "\ file://cross_compile.patch;patch=1 \ @@ -22,6 +22,11 @@ prefix = "${STAGING_DIR_NATIVE}${layout_prefix}" exec_prefix = "${STAGING_DIR_NATIVE}${layout_exec_prefix}" bindir = "${STAGING_BINDIR_NATIVE}" +# skip ac_cv_... setting for cross build: host paths must be used +do_configure_prepend () { + export LIBTOOL_BB_DO_NOT_SET_PATHS=1 +} + do_compile () { : } |