diff options
author | asami <asami@FreeBSD.org> | 1996-06-17 09:04:10 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-06-17 09:04:10 +0800 |
commit | 87270adc991ee64c41e02edad093e66ded4d6e0c (patch) | |
tree | a6f3f760e3afb01af5bbe26d5453fa20cd26f4c8 /net/dgd | |
parent | 7c3d6824d6b29641fab7398a2a27839542d9701e (diff) | |
download | freebsd-ports-gnome-87270adc991ee64c41e02edad093e66ded4d6e0c.tar.gz freebsd-ports-gnome-87270adc991ee64c41e02edad093e66ded4d6e0c.tar.zst freebsd-ports-gnome-87270adc991ee64c41e02edad093e66ded4d6e0c.zip |
Add a $ to the variable name we're trying to use so this thing actually
installs.
Since Adam seems so insistent to keep his kludge, let him has his way
but don't make it the default so that we don't keep tripping over it
at release time. (If you don't like the variable name, go ahead and
change it.)
Diffstat (limited to 'net/dgd')
-rw-r--r-- | net/dgd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/dgd/Makefile b/net/dgd/Makefile index 095c4c83d215..8b43b60790da 100644 --- a/net/dgd/Makefile +++ b/net/dgd/Makefile @@ -3,7 +3,7 @@ # Date created: 23 August 1994 # Whom: adam # -# $Id: Makefile,v 1.44 1996/06/16 11:50:54 adam Exp $ +# $Id: Makefile,v 1.45 1996/06/16 16:48:47 adam Exp $ # DISTNAME= dgd-1.0.56 @@ -50,10 +50,10 @@ post-build: do-install: @-mv ${PREFIX}/dgd/bin/driver ${PREFIX}/dgd/bin/driver.old - @tar -C ${WRKDIR} -cf - `grep '^dgd/' {PKGDIR}/PLIST` \ + @tar -C ${WRKDIR} -cf - `grep '^dgd/' ${PKGDIR}/PLIST` \ | tar -C ${PREFIX} -xpf - -.if !defined(DO_PACKAGE) +.if defined(ADAMS_PACKAGE_KLUDGE) && !defined(DO_PACKAGE) package: # @${MAKE} ${.MAKEFLAGS} 'PKG_CMD= cd ${WRKDIR}; ${PKG_CMD}' \ @${MAKE} ${.MAKEFLAGS} 'PKG_ARGS= ${PKG_ARGS} -f ${WRKDIR}/PLIST' \ |