diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-19 16:05:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-19 16:05:21 +0000 |
commit | 0325dd20dd9e13794c09b1e0687ecd1ef2081de0 (patch) | |
tree | 8fa87c262d060b0a37418a4f790717ed10199cec /debug/Makefile | |
parent | 08c6477a9c9c66dc8b735482ac224e8e6f570697 (diff) | |
download | glibc-0325dd20dd9e13794c09b1e0687ecd1ef2081de0.tar.gz glibc-0325dd20dd9e13794c09b1e0687ecd1ef2081de0.tar.xz glibc-0325dd20dd9e13794c09b1e0687ecd1ef2081de0.zip |
Update.
2004-10-19 Jakub Jelinek <jakub@redhat.com> * debug/Makefile (catchsegv): Prefix $LIB with a backslash.
Diffstat (limited to 'debug/Makefile')
-rw-r--r-- | debug/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/Makefile b/debug/Makefile index d701daa218..6df06116b7 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -72,7 +72,7 @@ include ../Rules $(objpfx)catchsegv: catchsegv.sh $(common-objpfx)soversions.mk \ $(common-objpfx)config.make - slibpfx=`echo $(slibdir)|sed 's/lib\(64\|\)$$/$$LIB/'`; \ + slibpfx=`echo $(slibdir)|sed 's/lib\(64\|\)$$/\\\\\\\\$$LIB/'`; \ sed -e 's|@VERSION@|$(version)|' -e "s|@SLIB@|$$slibpfx|" $< > $@.new chmod 555 $@.new mv -f $@.new $@ |