diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-12-26 23:00:53 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-06 11:12:30 +0000 |
commit | a223d646de4074ec792b879b8d21497c58c7bd4a (patch) | |
tree | 7bb4e8e49e02527c3c076c2cad77bce2f202c3dd /meta/recipes-devtools | |
parent | 692cafa46b37fb15a4397114a8380b35ecc09d7f (diff) | |
download | openembedded-core-contrib-a223d646de4074ec792b879b8d21497c58c7bd4a.tar.gz |
automake: upgrade to 1.14
Upgrade from 1.13.4 to 1.14:
- Remove the PATHFIXPATCH variable and path_prog_fixes.patch since the
problem can be fixed by the do_install_append().
- Remove prefer-cpio-over-pax-for-ustar-archives.patch since it have
been fixed by the upgrade.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/automake/automake/path_prog_fixes.patch | 41 | ||||
-rw-r--r-- | meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch | 48 | ||||
-rw-r--r-- | meta/recipes-devtools/automake/automake_1.14.bb (renamed from meta/recipes-devtools/automake/automake_1.13.4.bb) | 14 |
3 files changed, 4 insertions, 99 deletions
diff --git a/meta/recipes-devtools/automake/automake/path_prog_fixes.patch b/meta/recipes-devtools/automake/automake/path_prog_fixes.patch deleted file mode 100644 index 9ee0672f702..00000000000 --- a/meta/recipes-devtools/automake/automake/path_prog_fixes.patch +++ /dev/null @@ -1,41 +0,0 @@ -Upstream-Status: Inappropriate [embedded specific] - ---- - Makefile.am | 3 ++- - Makefile.in | 3 ++- - aclocal.in | 4 ++-- - automake.in | 6 ++++-- - 4 files changed, 10 insertions(+), 6 deletions(-) - -Index: automake-1.12.1/aclocal.in -=================================================================== ---- automake-1.12.1.orig/aclocal.in -+++ automake-1.12.1/aclocal.in -@@ -1,8 +1,8 @@ --#!@PERL@ -w -+#!@bindir@/env perl - # -*- perl -*- - # @configure_input@ - --eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac' -+eval 'case $# in 0) exec @bindir@/env perl -S "$0";; *) exec @bindir@/env perl -S "$0" "$@";; esac' - if 0; - - # aclocal - create aclocal.m4 by scanning configure.ac -Index: automake-1.12.1/automake.in -=================================================================== ---- automake-1.12.1.orig/automake.in -+++ automake-1.12.1/automake.in -@@ -1,8 +1,10 @@ --#!@PERL@ -w -+#!@bindir@/env perl - # -*- perl -*- - # @configure_input@ - --eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac' -+use warnings; -+ -+eval 'case $# in 0) exec @bindir@/env perl -S "$0";; *) exec @bindir@/env perl -S "$0" "$@";; esac' - if 0; - - # automake - create Makefile.in from Makefile.am diff --git a/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch b/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch deleted file mode 100644 index 6ffff839c50..00000000000 --- a/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch +++ /dev/null @@ -1,48 +0,0 @@ -When the user has a UID or GID that is larger than the ustar format -supports, pax does not error out gracefully in some cases (FC13). In -this case cpio does. - -See for more details: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8343 - -Additionally drop tar.m4 out of that part of the Makefile or we end up in -a fatal attempt to regen loop: - -CDPATH="${ZSH_VERSION+.}:" && cd . && perllibdir="automake-1.11.1/lib:./lib" "automake-1.11.1/aclocal" --acdir=m4 -I m4 -/bin/sh: automake-1.11.1/aclocal: No such file or directory -make: *** [aclocal.m4] Error 127 - -Upstream-Status: Pending - -Signed-off-by: Tom Rini <tom_rini@mentor.com> - -Updated for version 1.11.3: -Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> -Date: 2011/03/14 - -Updated for version 1.13.2: -Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> - -diff -Nurd automake-1.13.2/Makefile.in automake-1.13.2/Makefile.in ---- automake-1.13.2/Makefile.in 2013-05-15 23:12:58.000000000 +0300 -+++ automake-1.13.2/Makefile.in 2013-05-23 02:13:41.364026301 +0300 -@@ -141,7 +141,7 @@ - $(top_srcdir)/m4/options.m4 $(top_srcdir)/m4/runlog.m4 \ - $(top_srcdir)/m4/sanity.m4 $(top_srcdir)/m4/silent.m4 \ - $(top_srcdir)/m4/strip.m4 $(top_srcdir)/m4/substnot.m4 \ -- $(top_srcdir)/m4/tar.m4 $(top_srcdir)/configure.ac -+ $(top_srcdir)/configure.ac - am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) - am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ -diff -Nurd automake-1.13.2/m4/tar.m4 automake-1.13.2/m4/tar.m4 ---- automake-1.13.2/m4/tar.m4 2013-05-13 23:12:48.000000000 +0300 -+++ automake-1.13.2/m4/tar.m4 2013-05-23 02:13:26.600025805 +0300 -@@ -26,7 +26,7 @@ - AC_SUBST([AMTAR], ['$${TAR-tar}']) - - # We'll loop over all known methods to create a tar archive until one works. --_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' -+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) cpio pax none' - - m4_if([$1], [v7], - [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
\ No newline at end of file diff --git a/meta/recipes-devtools/automake/automake_1.13.4.bb b/meta/recipes-devtools/automake/automake_1.14.bb index 76307548574..de6fcfa6484 100644 --- a/meta/recipes-devtools/automake/automake_1.13.4.bb +++ b/meta/recipes-devtools/automake/automake_1.14.bb @@ -1,6 +1,6 @@ require automake.inc LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" DEPENDS_class-native = "autoconf-native" NAMEVER = "${@oe.utils.trim_version("${PV}", 2)}" @@ -18,18 +18,12 @@ RDEPENDS_${PN} += "\ RDEPENDS_${PN}_class-native = "autoconf-native perl-native-runtime" -PATHFIXPATCH = "file://path_prog_fixes.patch" -PATHFIXPATCH_class-native = "" -PATHFIXPATCH_class-nativesdk = "" - -SRC_URI += "${PATHFIXPATCH} \ - file://prefer-cpio-over-pax-for-ustar-archives.patch \ - file://python-libdir.patch \ +SRC_URI += " file://python-libdir.patch \ file://py-compile-compile-only-optimized-byte-code.patch \ file://buildtest.patch" -SRC_URI[md5sum] = "9199e266993a5bbdc914923349d51e3e" -SRC_URI[sha256sum] = "4c93abc0bff54b296f41f92dd3aa1e73e554265a6f719df465574983ef6f878c" +SRC_URI[md5sum] = "a3c0d9298c6112f5f2c26c639ccaaed7" +SRC_URI[sha256sum] = "7847424d4204d1627c129e9c15b81e145836afa2a1bf9003ffe10aa26ea75755" do_install_append () { install -d ${D}${datadir} |