diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-03 15:51:59 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-05 15:23:42 +0000 |
commit | eab0adf47ea0d78d34f5ce608f4039a158877184 (patch) | |
tree | c694ad9570ac763094e0f8c5a2710ea6d8c41b62 /meta | |
parent | 42f983152659c9ba60b0642e1acd65eb42d4b090 (diff) | |
download | openembedded-core-contrib-eab0adf47ea0d78d34f5ce608f4039a158877184.tar.gz |
openjade: Fix configure assumptions about file moves
This means that do_configure prefunc code can see the files in question
and ensures aclocal files get copied in.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/openjade/openjade-native_1.3.2.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb index 9dbd442207f..ccce421cf30 100644 --- a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb +++ b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb @@ -42,9 +42,10 @@ SSTATEPOSTINSTFUNCS += "openjade_sstate_postinst" SYSROOT_PREPROCESS_FUNCS += "openjade_sysroot_preprocess" # configure.in needs to be reloacted to trigger reautoconf -do_configure_prepend () { +do_extraunpack () { cp ${S}/config/configure.in ${S}/ } +addtask extraunpack after do_patch before do_configure # We need to do this else the source interdependencies aren't generated and # build failures can result (e.g. zero size style/Makefile.dep file) |