diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-05 05:32:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-05 05:32:24 +0000 |
commit | 926de5eb779ca8b33e7bbfb588afa442fab69714 (patch) | |
tree | 2ba68e875fcd7ca1a72aa6b7221a168aca9b7640 /malloc/Makefile | |
parent | 43fc8f18c7898966fce3cc4a19908a61a8186f07 (diff) | |
download | glibc-926de5eb779ca8b33e7bbfb588afa442fab69714.tar.gz glibc-926de5eb779ca8b33e7bbfb588afa442fab69714.tar.xz glibc-926de5eb779ca8b33e7bbfb588afa442fab69714.zip |
Update.
* malloc/Makefile ($(objpfx)memprof): Fix typo in rule. * malloc/memprof.sh: Take options to control memprofstat.
Diffstat (limited to 'malloc/Makefile')
-rw-r--r-- | malloc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/Makefile b/malloc/Makefile index dfbf333c79..90c7fc4531 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -101,7 +101,7 @@ $(objpfx)mtrace: mtrace.pl $(objpfx)memprof: memprof.sh rm -f $@.new - sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(VERSION)|' \ + sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \ -e 's|@LIBDIR@|$(libdir)|' -e 's|@BINDIR@|$(bindir)|' $^ > $@.new \ && rm -f $@ && mv $@.new $@ && chmod +x $@ |