diff options
author | Bogdan Marinescu <bogdan.a.marinescu@intel.com> | 2012-07-19 13:33:52 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-22 11:40:09 +0100 |
commit | effb75d42098b3e367d393215fd5d52a0191e954 (patch) | |
tree | eac55bc87850ab7d4b0cf139fc25cdf1495e4072 /meta/recipes-devtools/autoconf/autoconf_2.69.bb | |
parent | fae8b8e3f172a7523c0d5cc416031f3d571b9f81 (diff) | |
download | openembedded-core-effb75d42098b3e367d393215fd5d52a0191e954.tar.gz openembedded-core-effb75d42098b3e367d393215fd5d52a0191e954.tar.bz2 openembedded-core-effb75d42098b3e367d393215fd5d52a0191e954.zip |
autoconf: updated to 2.69
Tested with core-image-sato-sdk and lib32-core-image-sato-sdk.
This update was done mainly because multilib builds failed on master with this error:
| autoreconf: running: aclocal -I /poky/build/tmp/work/x86-pokymllib32-linux/lib32-automake-1.12.1-r0/automake-1.12.1/m4/ -I /poky/build/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12 -I /poky/build/tmp/work/x86-pokymllib32-linux/lib32-automake-1.12.1-r0/automake-1.12.1/aclocal-copy/ -I /poky/build/tmp/work/x86-pokymllib32-linux/lib32-automake-1.12.1-r0/automake-1.12.1/m4/ -I /poky/build/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12 -I /poky/build/tmp/work/x86-pokymllib32-linux/lib32-automake-1.12.1-r0/automake-1.12.1/aclocal-copy/ --force --warnings=cross
| aclocal: warning: unknown warning category 'cross'
| configure.ac:18: error: Autoconf version 2.69 or higher is required
Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autoconf/autoconf_2.69.bb')
-rw-r--r-- | meta/recipes-devtools/autoconf/autoconf_2.69.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf_2.69.bb b/meta/recipes-devtools/autoconf/autoconf_2.69.bb new file mode 100644 index 0000000000..478f8eddbc --- /dev/null +++ b/meta/recipes-devtools/autoconf/autoconf_2.69.bb @@ -0,0 +1,27 @@ +require autoconf.inc + +PR = "r7" + +PARALLEL_MAKE = "" + +LICENSE = "GPLv2 & GPLv3" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ + file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504" +SRC_URI += "file://autoreconf-include.patch \ + file://autoreconf-exclude.patch \ + file://autoreconf-foreign.patch \ + file://autoreconf-gnuconfigize.patch \ + file://autoheader-nonfatal-warnings.patch \ + ${@['file://path_prog_fixes.patch', ''][bb.data.inherits_class('native', d) or bb.data.inherits_class('nativesdk', d)]} \ + file://config_site.patch \ + file://remove-usr-local-lib-from-m4.patch \ + " + +SRC_URI[md5sum] = "82d05e03b93e45f5a39b828dc9c6c29b" +SRC_URI[sha256sum] = "954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969" + +SRC_URI_append_virtclass-native = " file://fix_path_xtra.patch" + +EXTRA_OECONF += "ac_cv_path_M4=m4" + +BBCLASSEXTEND = "native nativesdk" |