diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makeconfig | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2009-01-22 Roland McGrath <roland@redhat.com> + + * Makeconfig (%.v.i): Strip trailing # comments, + not only whole-line comments. + 2009-01-10 Ulrich Drepper <drepper@redhat.com> * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Take 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 |