diff options
author | Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | 2012-12-20 11:50:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-26 11:34:03 +0000 |
commit | abf0ad8102b15f8a0fabc740a70ce6f2c47a92c9 (patch) | |
tree | 5b76b7089f611ac32fb41803e22c51377d5e07ce /meta | |
parent | 90c0eb29f0b41e4ac2d3d17ebad7295c2ebdc02a (diff) | |
download | poky-abf0ad8102b15f8a0fabc740a70ce6f2c47a92c9.tar.gz |
slang: added gnu-configize for AArch64 support
(From OE-Core rev: 807aa2079c5884b6bd1afb705c31090c87d14dc5)
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/slang/slang_2.2.4.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-extended/slang/slang_2.2.4.bb b/meta/recipes-extended/slang/slang_2.2.4.bb index 60aac666c7..b70e663139 100644 --- a/meta/recipes-extended/slang/slang_2.2.4.bb +++ b/meta/recipes-extended/slang/slang_2.2.4.bb | |||
@@ -29,6 +29,14 @@ SRC_URI[sha256sum] = "9a8257a9a2a55099af858b13338dc8f3a06dd2069f46f0df2c9c3bb84a | |||
29 | 29 | ||
30 | EXTRA_OECONF += " --without-z --without-png --without-onig --x-includes=${STAGING_DIR_HOST}/usr/include/X11 --x-libraries=${STAGING_DIR_HOST}/usr/lib" | 30 | EXTRA_OECONF += " --without-z --without-png --without-onig --x-includes=${STAGING_DIR_HOST}/usr/include/X11 --x-libraries=${STAGING_DIR_HOST}/usr/lib" |
31 | 31 | ||
32 | do_configure_prepend() { | ||
33 | # slang keeps configure.ac and rest of autoconf files in autoconf/ directory | ||
34 | # we have to go there to be able to run gnu-configize cause it expects configure.{in,ac} | ||
35 | # to be present. Resulting files land in autoconf/autoconf/ so we need to move them. | ||
36 | cd ${S}/autoconf && gnu-configize --force && mv autoconf/config.* . | ||
37 | cd ${B} | ||
38 | } | ||
39 | |||
32 | do_install() { | 40 | do_install() { |
33 | oe_runmake install DESTDIR=${D} -e 'INST_LIB_DIR=${STAGING_DIR_HOST}/usr/lib' | 41 | oe_runmake install DESTDIR=${D} -e 'INST_LIB_DIR=${STAGING_DIR_HOST}/usr/lib' |
34 | } | 42 | } |