re PR bootstrap/29402 (Parallel make fails with --disable-bootstrap)
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sat, 14 Oct 2006 01:25:39 +0000 (01:25 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sat, 14 Oct 2006 01:25:39 +0000 (01:25 +0000)
PR bootstrap/29402
* Makefile.in (ALL_GTFILES_H): Use $(sort ...) instead of
shell pipeline.

From-SVN: r117721

gcc/ChangeLog
gcc/Makefile.in

index ac5471e2f380be1047bc39bf73853fc8c1e054cb..b0879466b4a956b347f17ba27f0999a15d0cf9ab 100644 (file)
@@ -1,3 +1,9 @@
+2006-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       PR bootstrap/29402
+       * Makefile.in (ALL_GTFILES_H): Use $(sort ...) instead of
+       shell pipeline.
+
 2006-10-13  Eric Christopher  <echristo@apple.com>
 
        * config/darwin.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
index bf7ed90df2e252defe6f2fb7410a62c869161269..312ae6646151a211fc4e722d8a6e2731da93a1bd 100644 (file)
@@ -2882,8 +2882,7 @@ GTFILES_FILES_FILES_C = $(subst $(srcdir)/,, \
 GTFILES_FILES_FILES_H = $(addprefix gt-, \
        $(subst /,-,$(GTFILES_FILES_FILES_C:.c=.h)))
 GTFILES_LANG_DIR_NAMES_H = $(foreach d,$(GTFILES_LANG_DIR_NAMES), gtype-$(d).h)
-ALL_GTFILES_H := $(shell echo $(GTFILES_FILES_FILES_H) \
-       $(GTFILES_LANG_DIR_NAMES_H) | tr ' ' '\n'  | sort -u)
+ALL_GTFILES_H := $(sort $(GTFILES_FILES_FILES_H) $(GTFILES_LANG_DIR_NAMES_H))
 
 $(ALL_GTFILES_H) : s-gtype ; @true