diff options
author | peter <peter@FreeBSD.org> | 1996-09-26 14:22:32 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-09-26 14:22:32 +0000 |
commit | 5b7e1029fb7af0d235a6e79ba6c8b21f7118b589 (patch) | |
tree | 18358a575c355b65ab4582ad4629596fa38d5dca /lib/libgnumalloc | |
parent | cb685776d1ee6cfe52b9bc4e334559ffa6449b39 (diff) | |
download | FreeBSD-src-5b7e1029fb7af0d235a6e79ba6c8b21f7118b589.zip FreeBSD-src-5b7e1029fb7af0d235a6e79ba6c8b21f7118b589.tar.gz |
Remove the nuke of /usr/lib/libgnumalloc*, this is closer to "How It Was
Before", hopefully it won't cause as much hassle. This now entirely
confines it's activities to /usr/lib/compat/lib{fake,}gnumalloc.so.2.0
Diffstat (limited to 'lib/libgnumalloc')
-rw-r--r-- | lib/libgnumalloc/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libgnumalloc/Makefile b/lib/libgnumalloc/Makefile index 967f691..4a06bbd 100644 --- a/lib/libgnumalloc/Makefile +++ b/lib/libgnumalloc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1996/09/02 13:15:00 phk Exp $ +# $Id: Makefile,v 1.5 1996/09/19 09:36:43 peter Exp $ LIB= fakegnumalloc SHLIBDIR= ${LIBDIR}/compat @@ -9,12 +9,11 @@ SHLIB_MINOR= 0 SRCS= fakegnumalloc.c afterinstall: - rm -f ${DESTDIR}${LIBDIR}/libgnumalloc* - rm -f ${DESTDIR}${SHLIBDIR}/libgnumalloc* for i in ${DESTDIR}/var/db/pkg/gnumalloc* ; do \ if [ -d $$i ] ; then exit 0 ; fi ; \ done && \ ( cd ${DESTDIR}${SHLIBDIR} && \ + rm -f libgnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} && \ ln -fs libfakegnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ libgnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ) |