diff options
author | Roland McGrath <roland@gnu.org> | 2009-01-22 20:38:19 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2009-01-22 20:38:19 +0000 |
commit | 0699a0ca6aaf93443fc807ff77c74889fcef8a58 (patch) | |
tree | c73488875d17f943aba9f78a1894a9e8449c3267 /Makeconfig | |
parent | 6a7b0fc65f9949e2fe91e09677ca960fe9584cab (diff) | |
download | glibc-0699a0ca6aaf93443fc807ff77c74889fcef8a58.tar glibc-0699a0ca6aaf93443fc807ff77c74889fcef8a58.tar.gz glibc-0699a0ca6aaf93443fc807ff77c74889fcef8a58.tar.bz2 glibc-0699a0ca6aaf93443fc807ff77c74889fcef8a58.zip |
* Makeconfig (%.v.i): Strip trailing # comments,
not only whole-line comments.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 2 |
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 |