diff options
author | Roland McGrath <roland@gnu.org> | 2002-09-25 07:19:28 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-09-25 07:19:28 +0000 |
commit | 8027e188767b9068eec68f1730af711591c449c7 (patch) | |
tree | e658716993cb55a8a11ff70a32ba2f4868cc8444 /Makeconfig | |
parent | b4d8d06a497b66ad5419e071e738beba44f073fb (diff) |
2002-09-25 Roland McGrath <roland@redhat.com>
* Makeconfig (%.v.i pattern rule): Use $(CPPFLAGS).
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makeconfig b/Makeconfig index 9216b4c2a8..75dcf38e23 100644 --- a/Makeconfig +++ b/Makeconfig @@ -737,8 +737,7 @@ ifeq (yes, $(build-shared)) # (but no commands). %.v.i: $(common-objpfx)config.h sed '/^[ ]*#/d;s/^[ ]*%/#/' $(filter-out FORCE %.h,$^) \ - | $(CC) -E -undef -I$(common-objdir) -I$(..)include \ - -include $(common-objpfx)config.h \ + | $(CC) -E -undef $(CPPFLAGS) \ -DASSEMBLER -x assembler-with-cpp - \ > $@T mv -f $@T $@ |