Commit 0c472e4e by Kaveh R. Ghazi Committed by Kaveh Ghazi

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
parent 6412924a
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment