summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-06-17 01:04:10 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-06-17 01:04:10 +0000
commit283d911dbaaa66ae350fab5ce9e09fc9c2dc35d8 (patch)
tree2a58740b07b86330a4436af3e863fd79a04719a6
parentfix fake installation problem (diff)
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.)
Notes
Notes: svn path=/head/; revision=3239
-rw-r--r--net/dgd/Makefile6
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' \