summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch')
-rw-r--r--meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch48
1 files changed, 0 insertions, 48 deletions
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 6ffff839c5..0000000000
--- a/meta/recipes-devtools/automake/automake/prefer-cpio-over-pax-for-ustar-archives.patch
+++ /dev/null
@@ -1,48 +0,0 @@
1When the user has a UID or GID that is larger than the ustar format
2supports, pax does not error out gracefully in some cases (FC13). In
3this case cpio does.
4
5See for more details: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8343
6
7Additionally drop tar.m4 out of that part of the Makefile or we end up in
8a fatal attempt to regen loop:
9
10CDPATH="${ZSH_VERSION+.}:" && cd . && perllibdir="automake-1.11.1/lib:./lib" "automake-1.11.1/aclocal" --acdir=m4 -I m4
11/bin/sh: automake-1.11.1/aclocal: No such file or directory
12make: *** [aclocal.m4] Error 127
13
14Upstream-Status: Pending
15
16Signed-off-by: Tom Rini <tom_rini@mentor.com>
17
18Updated for version 1.11.3:
19Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
20Date: 2011/03/14
21
22Updated for version 1.13.2:
23Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
24
25diff -Nurd automake-1.13.2/Makefile.in automake-1.13.2/Makefile.in
26--- automake-1.13.2/Makefile.in 2013-05-15 23:12:58.000000000 +0300
27+++ automake-1.13.2/Makefile.in 2013-05-23 02:13:41.364026301 +0300
28@@ -141,7 +141,7 @@
29 $(top_srcdir)/m4/options.m4 $(top_srcdir)/m4/runlog.m4 \
30 $(top_srcdir)/m4/sanity.m4 $(top_srcdir)/m4/silent.m4 \
31 $(top_srcdir)/m4/strip.m4 $(top_srcdir)/m4/substnot.m4 \
32- $(top_srcdir)/m4/tar.m4 $(top_srcdir)/configure.ac
33+ $(top_srcdir)/configure.ac
34 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
35 $(ACLOCAL_M4)
36 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
37diff -Nurd automake-1.13.2/m4/tar.m4 automake-1.13.2/m4/tar.m4
38--- automake-1.13.2/m4/tar.m4 2013-05-13 23:12:48.000000000 +0300
39+++ automake-1.13.2/m4/tar.m4 2013-05-23 02:13:26.600025805 +0300
40@@ -26,7 +26,7 @@
41 AC_SUBST([AMTAR], ['$${TAR-tar}'])
42
43 # We'll loop over all known methods to create a tar archive until one works.
44-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
45+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) cpio pax none'
46
47 m4_if([$1], [v7],
48 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], \ No newline at end of file