aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2006-10-14 01:25:39 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2006-10-14 01:25:39 +0000
commit0c472e4e469e4f45541a7ae7d8d72ae5ab9acdd4 (patch)
tree05ae2bcb8abc9f4db1cb4064d1c66107fba5b01e
parent6412924ae6e6fd2abb94c48727c70c5a92c684bc (diff)
downloadgcc-0c472e4e469e4f45541a7ae7d8d72ae5ab9acdd4.zip
gcc-0c472e4e469e4f45541a7ae7d8d72ae5ab9acdd4.tar.gz
gcc-0c472e4e469e4f45541a7ae7d8d72ae5ab9acdd4.tar.bz2
re PR bootstrap/29402 (Parallel make fails with --disable-bootstrap)
PR bootstrap/29402 * Makefile.in (ALL_GTFILES_H): Use $(sort ...) instead of shell pipeline. From-SVN: r117721
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/Makefile.in3
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ac5471e..b087946 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index bf7ed90..312ae66 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -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