summaryrefslogtreecommitdiff
path: root/patches/glibc/2.3.6/260-csu-Makefile.patch
blob: 509cbcc18b1fa4bbcd4866549fdb789df500c72a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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