diff options
author | peter <peter@FreeBSD.org> | 1996-08-30 01:08:03 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-30 01:08:03 +0000 |
commit | 676b90cac3f4e75e9475a4da5e2b69e28c0e8518 (patch) | |
tree | 4e48e9f978e1e78ebc3d85aa8c6473a028c3e6d5 /lib/libgnumalloc | |
parent | 3752244d028d46a6ab2ed44d5cb918b322d869cb (diff) | |
download | FreeBSD-src-676b90cac3f4e75e9475a4da5e2b69e28c0e8518.zip FreeBSD-src-676b90cac3f4e75e9475a4da5e2b69e28c0e8518.tar.gz |
Add a missing ${ on a make variable..
Diffstat (limited to 'lib/libgnumalloc')
-rw-r--r-- | lib/libgnumalloc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libgnumalloc/Makefile b/lib/libgnumalloc/Makefile index 35f80db..01fca56 100644 --- a/lib/libgnumalloc/Makefile +++ b/lib/libgnumalloc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/02/11 18:12:41 phk Exp $ +# $Id: Makefile,v 1.2 1996/02/12 12:40:04 phk Exp $ LIB= fakegnumalloc SHLIB_MAJOR= 2 @@ -12,7 +12,7 @@ afterinstall: if [ -d $$i ] ; then exit 0 ; fi ; \ done && \ ( cd ${DESTDIR}${SHLIBDIR} && \ - rm -f libgnumalloc.so.SHLIB_MAJOR}.${SHLIB_MINOR} && \ + rm -f libgnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} && \ ln -fs libfakegnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ libgnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ) |