1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

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.)
This commit is contained in:
Satoshi Asami 1996-06-17 01:04:10 +00:00
parent 09110895de
commit 283d911dba
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3239

View File

@ -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' \