Commit 9af12c1b by Geoffrey Keating Committed by Geoffrey Keating

Makefile.in (macro_list): Use move-if-change to avoid spurious rebuilds.

	* Makefile.in (macro_list): Use move-if-change to avoid spurious
	rebuilds.

From-SVN: r90535
parent e260ea9d
2004-11-11 Geoffrey Keating <geoffk@apple.com>
* Makefile.in (macro_list): Use move-if-change to avoid spurious
rebuilds.
2004-11-12 Mark Mitchell <mark@codesourcery.com>
PR c++/18416
......
......@@ -2792,7 +2792,8 @@ 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' | \
sort -u > $@
sort -u > tmp-$@
$(SHELL) $(srcdir)/../move-if-change tmp-$@ $@
# Build fixed copies of system files.
stmp-fixinc: gsyslimits.h macro_list \
......
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