mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
automake: Fix issue with tar configure failing with large UID/GIDs
Add a fixup for trying to create ustar archives when the users UID or GID is larger than the format allows. (From OE-Core rev: 7a092818f901c5c860e82f573534cd505d9fb959) Signed-off-by: Tom Rini <tom_rini@mentor.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
fb98479c47
commit
9a49eb78ec
@@ -4,7 +4,7 @@ Standards. Automake requires the use of Autoconf."
|
|||||||
LICENSE = "GPLv2"
|
LICENSE = "GPLv2"
|
||||||
HOMEPAGE = "http://www.gnu.org/software/automake/"
|
HOMEPAGE = "http://www.gnu.org/software/automake/"
|
||||||
SECTION = "devel"
|
SECTION = "devel"
|
||||||
PR = "r2"
|
PR = "r3"
|
||||||
|
|
||||||
SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2 "
|
SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.bz2 "
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
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
|
||||||
|
|
||||||
|
Signed-off-by: Tom Rini <tom_rini@mentor.com>
|
||||||
|
|
||||||
|
Index: automake-1.11.1/m4/tar.m4
|
||||||
|
===================================================================
|
||||||
|
--- automake-1.11.1.orig/m4/tar.m4
|
||||||
|
+++ automake-1.11.1/m4/tar.m4
|
||||||
|
@@ -30,7 +30,7 @@ m4_if([$1], [v7],
|
||||||
|
[m4_fatal([Unknown tar format])])
|
||||||
|
AC_MSG_CHECKING([how to create a $1 tar archive])
|
||||||
|
# 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'
|
||||||
|
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
|
||||||
|
# Do not fold the above two line into one, because Tru64 sh and
|
||||||
|
# Solaris sh will not grok spaces in the rhs of `-'.
|
||||||
|
Index: automake-1.11.1/Makefile.in
|
||||||
|
===================================================================
|
||||||
|
--- automake-1.11.1.orig/Makefile.in
|
||||||
|
+++ automake-1.11.1/Makefile.in
|
||||||
|
@@ -44,7 +44,7 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/a
|
||||||
|
$(top_srcdir)/m4/missing.m4 $(top_srcdir)/m4/mkdirp.m4 \
|
||||||
|
$(top_srcdir)/m4/options.m4 $(top_srcdir)/m4/runlog.m4 \
|
||||||
|
$(top_srcdir)/m4/sanity.m4 $(top_srcdir)/m4/strip.m4 \
|
||||||
|
- $(top_srcdir)/m4/substnot.m4 $(top_srcdir)/m4/tar.m4 \
|
||||||
|
+ $(top_srcdir)/m4/substnot.m4 \
|
||||||
|
$(top_srcdir)/configure.ac
|
||||||
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||||
|
$(ACLOCAL_M4)
|
||||||
@@ -32,7 +32,8 @@ RDEPENDS_automake-native = "autoconf-native perl-native-runtime"
|
|||||||
PATHFIXPATCH = "file://path_prog_fixes.patch;patch=1"
|
PATHFIXPATCH = "file://path_prog_fixes.patch;patch=1"
|
||||||
PATHFIXPATCH_virtclass-native = ""
|
PATHFIXPATCH_virtclass-native = ""
|
||||||
|
|
||||||
SRC_URI += "${PATHFIXPATCH}"
|
SRC_URI += "${PATHFIXPATCH} \
|
||||||
|
file://prefer-cpio-over-pax-for-ustar-archives.patch"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "c2972c4d9b3e29c03d5f2af86249876f"
|
SRC_URI[md5sum] = "c2972c4d9b3e29c03d5f2af86249876f"
|
||||||
SRC_URI[sha256sum] = "5b159d3c0e0a1f87de71b68bcb9f1a1c49e9e71749c9b723f17e2e1e0295c7ae"
|
SRC_URI[sha256sum] = "5b159d3c0e0a1f87de71b68bcb9f1a1c49e9e71749c9b723f17e2e1e0295c7ae"
|
||||||
|
|||||||
Reference in New Issue
Block a user