]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in (s-macro_list): Conform to POSIX rules in single quoted strings.
authorMatthias Klose <doko@debian.org>
Wed, 6 Sep 2006 10:30:49 +0000 (10:30 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Wed, 6 Sep 2006 10:30:49 +0000 (10:30 +0000)
2006-09-06  Matthias Klose  <doko@debian.org>

        * Makefile.in (s-macro_list): Conform to POSIX rules in single quoted
        strings.

From-SVN: r116721

gcc/ChangeLog
gcc/Makefile.in

index 2ec0d396515a9b3001d6997baef46f7db2f08f00..1a9812b335b22047812a7efe1fd5575441a69b68 100644 (file)
@@ -1,3 +1,8 @@
+2006-09-06  Matthias Klose  <doko@debian.org>
+
+       * Makefile.in (s-macro_list): Conform to POSIX rules in single quoted
+       strings.
+
 2006-08-25  Fariborz Jahanian  <fjahanian@apple.com>
 
        PR c/28418
index 40e3341eb4d8499104e2cc6f3a1309aa8336a900..20f9c8a81d5c07ecec18fa4fcb8d995f31b1c7ee 100644 (file)
@@ -2819,8 +2819,8 @@ install-gcc-tooldir:
 macro_list: s-macro_list; @true
 s-macro_list : $(GCC_PASSES) 
        echo | $(GCC_FOR_TARGET) -E -dM - | \
-         sed -n 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p ; \
-               s/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
+         sed -n -e 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \
+               -e 's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
          sort -u > tmp-macro_list
        $(SHELL) $(srcdir)/../move-if-change tmp-macro_list macro_list
        $(STAMP) s-macro_list