1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Add a missing ${ on a make variable..

This commit is contained in:
Peter Wemm 1996-08-30 01:08:03 +00:00
parent a4c5661fb7
commit 2eb5b7c878
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17923
2 changed files with 4 additions and 4 deletions

View File

@ -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} )

View File

@ -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} )