summaryrefslogtreecommitdiff
path: root/Makeconfig
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2009-01-22 20:38:19 +0000
committerRoland McGrath <roland@gnu.org>2009-01-22 20:38:19 +0000
commit0699a0ca6aaf93443fc807ff77c74889fcef8a58 (patch)
treec73488875d17f943aba9f78a1894a9e8449c3267 /Makeconfig
parent6a7b0fc65f9949e2fe91e09677ca960fe9584cab (diff)
* Makeconfig (%.v.i): Strip trailing # comments,
not only whole-line comments.
Diffstat (limited to 'Makeconfig')
-rw-r--r--Makeconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig
index e00cfe64db..5451560745 100644
--- a/Makeconfig
+++ b/Makeconfig
@@ -794,7 +794,7 @@ ifeq (yes, $(build-shared))
# listing both its input files, and any header files that it may reference
# (but no commands).
%.v.i: $(common-objpfx)config.h
- sed 's/#.*$$//;//^[ ]*$$/d;s/^[ ]*%/#/' \
+ sed 's/#.*$$//;/^[ ]*$$/d;s/^[ ]*%/#/' \
$(filter-out FORCE %.h,$^) \
| $(CC) -E -undef $(CPPFLAGS) -x assembler-with-cpp - \
> $@T