diff options
author | phk <phk@FreeBSD.org> | 1996-02-12 12:40:04 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-02-12 12:40:04 +0000 |
commit | 2d826eee1cce0bd510398b49ef759e9a610f911f (patch) | |
tree | 39233f4fce06bd7c2eeeacdc2403bffcd1088568 /lib/libfakegnumalloc | |
parent | 7b4fbe06e33c77e2a69704a923cccda45bf0bdf0 (diff) | |
download | FreeBSD-src-2d826eee1cce0bd510398b49ef759e9a610f911f.zip FreeBSD-src-2d826eee1cce0bd510398b49ef759e9a610f911f.tar.gz |
Some fixes:
- shared libraries are in ${SHLIBDIR}, not necessarily in ${LIBDIR}.
- don't remove or create any shared library versions except 2.0.
and improvements:
- don't use rm -r.
- indent the long shell command.
Submitted by: bde
Diffstat (limited to 'lib/libfakegnumalloc')
-rw-r--r-- | lib/libfakegnumalloc/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/lib/libfakegnumalloc/Makefile b/lib/libfakegnumalloc/Makefile index c8dbdff..35f80db 100644 --- a/lib/libfakegnumalloc/Makefile +++ b/lib/libfakegnumalloc/Makefile @@ -1,16 +1,19 @@ -# $Id$ +# $Id: Makefile,v 1.1 1996/02/11 18:12:41 phk Exp $ LIB= fakegnumalloc +SHLIB_MAJOR= 2 +SHLIB_MINOR= 0 SRCS= fakegnumalloc.c NOMAN= 1 afterinstall: rm -f ${DESTDIR}${LIBDIR}/libfakegnumalloc*.a - for i in ${DESTDIR}/var/db/pkg/gnumalloc* ; \ - do if [ -d $$i ] ; then exit 0 ; fi ; done && \ - ( cd ${DESTDIR}${LIBDIR} && \ - rm -rf libgnumalloc* && \ - ln -fs libfakegnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ - libgnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ) + 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} ) .include <bsd.lib.mk> |