diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-25 20:31:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-25 20:31:23 +0000 |
commit | 63461e754479c272b75fc219416142f38b4fb23e (patch) | |
tree | 5baaf00ea1a0f84d0f7f264dcd575560d0f3dfce /csu | |
parent | 901956a52a8b376daa61730f6560cdaddda4b6e2 (diff) | |
download | glibc-63461e754479c272b75fc219416142f38b4fb23e.zip glibc-63461e754479c272b75fc219416142f38b4fb23e.tar.gz glibc-63461e754479c272b75fc219416142f38b4fb23e.tar.bz2 |
Update.
* csu/Makefile ($(objpfx)version-info.h): Fix sed script to handle
banners.
Diffstat (limited to 'csu')
-rw-r--r-- | csu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csu/Makefile b/csu/Makefile index 1a3c9c1..9127aba 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -239,6 +239,6 @@ $(objpfx)version-info.h: $(common-objpfx)config.make $(all-Banner-files) if test -n "$$files"; then \ echo "\"Available extensions:\\n\""; \ sed -e '/^#/d' -e 's/^[[:space:]]*/ /' \ - -e 's/\(^.*$$\)/\"\1\\n\"/' $$files; \ + -e 's/^\(.*\)$$/\"\1\\n\"/' $$files; \ fi) > $@T mv -f $@T $@ |