]> git.pld-linux.org Git - packages/glibc.git/blame - glibc-gcc33.patch
- typo
[packages/glibc.git] / glibc-gcc33.patch
CommitLineData
40430bed
JB
1--- glibc-2.3.2/csu/Makefile.orig 2002-12-31 23:24:37.000000000 +0100
2+++ glibc-2.3.2/csu/Makefile 2003-06-01 22:13:40.000000000 +0200
3@@ -222,13 +222,13 @@
4 if [ -z "$$os" ]; then \
5 os=Linux; \
6 fi; \
7- echo "\"Compiled on a $$os $$version system" \
8- "on `date +%Y-%m-%d`.\\n\"" ;; \
9+ echo -e "\"Compiled on a $$os $$version system" \
10+ "on `date +%Y-%m-%d`.\\\n\"" ;; \
11 *) ;; \
12 esac; \
13 files="$(all-Banner-files)"; \
14 if test -n "$$files"; then \
15- echo "\"Available extensions:\\n\""; \
16+ echo -e "\"Available extensions:\\\n\""; \
17 sed -e '/^#/d' -e 's/^[[:space:]]*/ /' \
18 -e 's/\(^.*$$\)/\"\1\\n\"/' $$files; \
19 fi) > $@T
20--- glibc-2.3.2/stdio-common/sscanf.c.orig 2002-08-10 20:09:08.000000000 +0200
21+++ glibc-2.3.2/stdio-common/sscanf.c 2003-06-01 22:28:24.000000000 +0200
22@@ -27,9 +27,7 @@
23 /* Read formatted input from S, according to the format string FORMAT. */
24 /* VARARGS2 */
25 int
26-sscanf (s, format)
27- const char *s;
28- const char *format;
29+sscanf (const char *s, const char *format, ...)
30 {
31 va_list arg;
32 int done;
This page took 0.200748 seconds and 4 git commands to generate.