summaryrefslogtreecommitdiffstats
path: root/package/coreutils/coreutils-01-spawn-uclibc.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2014-10-24 19:09:35 -0300
committerPeter Korsgaard <peter@korsgaard.com>2014-10-25 01:09:33 +0200
commitd9d25fdb30e002d7e22fddb87d0a6386f963bfc3 (patch)
treefd282a00d0a4a2d978ff78dad3186dc73510ae91 /package/coreutils/coreutils-01-spawn-uclibc.patch
parenta9ef96aefa11e97640e7d4d285ab4612a713b65a (diff)
downloadbuildroot-d9d25fdb30e002d7e22fddb87d0a6386f963bfc3.tar.gz
buildroot-d9d25fdb30e002d7e22fddb87d0a6386f963bfc3.zip
coreutils: bump to version 8.23
Add hash file. patches 01 & 02 are now upstream so remove them. Patch 01 isn't required any more (no posix_spawn usage). Patch 02 is upstream. Patch 03 retooled for 8.23 and renamed to 01. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/coreutils/coreutils-01-spawn-uclibc.patch')
-rw-r--r--package/coreutils/coreutils-01-spawn-uclibc.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/package/coreutils/coreutils-01-spawn-uclibc.patch b/package/coreutils/coreutils-01-spawn-uclibc.patch
deleted file mode 100644
index a67921bf20..0000000000
--- a/package/coreutils/coreutils-01-spawn-uclibc.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 71cf16e435bf5db64abcf81a9dc6dc36ce37d58d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?P=C3=A1draig=20Brady?= <P@draigBrady.com>
-Date: Tue, 14 Jan 2014 16:59:07 +0000
-Subject: [PATCH] spawn: fix link error on uclibc
-
-* m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): use AC_SEARCH_LIBS,
-to incorporate -lrt if needed (on uclibc for example).
-* modules/posix_spawn: Reference the substituted LIB.
-
-Patch status: suggested by gnulib maintainer
-(http://article.gmane.org/gmane.comp.lib.gnulib.bugs/33610), not in upstream
-gnulib yet
-
-This issue should be fixed in coreutils version 8.23.
-
-Signed-off-by: Baruch Siach <baruch@tkos.co.il>
----
-
-diff --git a/m4/spawn_h.m4 b/m4/spawn_h.m4
-index 87fe122..3eb835c 100644
---- a/m4/spawn_h.m4
-+++ b/m4/spawn_h.m4
-@@ -64,7 +64,15 @@ AC_DEFUN([gl_HAVE_POSIX_SPAWN],
- dnl once only, before all statements that occur in other macros.
- AC_REQUIRE([gl_SPAWN_H_DEFAULTS])
-
-- AC_CHECK_FUNCS_ONCE([posix_spawn])
-+ LIB_POSIX_SPAWN=
-+ AC_SUBST([LIB_POSIX_SPAWN])
-+ gl_saved_libs=$LIBS
-+ AC_SEARCH_LIBS([posix_spawn], [rt],
-+ [test "$ac_cv_search_posix_spawn" = "none required" ||
-+ LIB_POSIX_SPAWN=$ac_cv_search_posix_spawn])
-+ AC_CHECK_FUNCS([posix_spawn])
-+ LIBS=$gl_saved_libs
-+
- if test $ac_cv_func_posix_spawn != yes; then
- HAVE_POSIX_SPAWN=0
- fi
-
---
-1.7.7.6
-
OpenPOWER on IntegriCloud