summaryrefslogtreecommitdiff
path: root/patches/glibc/2.3.6/260-csu-Makefile.patch
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-01-03 22:40:22 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-01-03 22:40:22 (GMT)
commit6568c1a39a29316caf7658f01955c0790639cef0 (patch)
tree37fcc27c967764f9f58c8337b4ce7f63788d26f1 /patches/glibc/2.3.6/260-csu-Makefile.patch
parenta28b59354823020a4e0676f40646c60da4f044db (diff)
libc-glibc: remove 2.3.6
This is an obsolete version which is no longer used by any sample (the only user, the ia64 sample, has been removed). It also makes the code path a bit complex, with twists just to accomodate that version. Removing the version will make those twists go away, and will ease commonalisation of glibc and eglibc in the future (hopefully!). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'patches/glibc/2.3.6/260-csu-Makefile.patch')
-rw-r--r--patches/glibc/2.3.6/260-csu-Makefile.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/patches/glibc/2.3.6/260-csu-Makefile.patch b/patches/glibc/2.3.6/260-csu-Makefile.patch
deleted file mode 100644
index 509cbcc..0000000
--- a/patches/glibc/2.3.6/260-csu-Makefile.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Use printf instead of echo for some shells.
-
-http://www.cygwin.com/ml/libc-alpha/2005-02/msg00123.html
-
-This patch does not generate invalid csu/version-info.h which has
-unterminating " line because some /bin/sh cannot parse correctly. The
-previous discussion was:
-
- http://sources.redhat.com/ml/libc-alpha/2004-08/msg00129.html
- http://sources.redhat.com/ml/libc-alpha/2004-08/msg00145.html
-
-This patch gets rid of all this issue because the conclusion of the
-discussion was to use printf instead of echo. Roland, could you look
-at it again?
-
-Regards,
--- gotom
-
-2005-02-26 GOTO Masanori <gotom@debian.or.jp>
-
- * csu/Makefile: Use printf instead of echo for some shells.
-
-Index: csu/Makefile
-===================================================================
-RCS file: /cvs/glibc/libc/csu/Makefile,v
-retrieving revision 1.75
-diff -u -p -r1.75 Makefile
---- glibc/csu/Makefile 3 Jan 2005 17:57:14 -0000 1.75
-+++ glibc.new/csu/Makefile 27 Feb 2005 01:17:49 -0000
-@@ -241,7 +241,7 @@ $(objpfx)version-info.h: $(common-objpfx
- esac; \
- files="$(all-Banner-files)"; \
- if test -n "$$files"; then \
-- echo "\"Available extensions:\\n\""; \
-+ printf '"Available extensions:\\n"\n'; \
- sed -e '/^#/d' -e 's/^[[:space:]]*/ /' \
- -e 's/^\(.*\)$$/\"\1\\n\"/' $$files; \
- fi) > $@T
-