diff options
author | jlam <jlam> | 2002-02-06 16:58:11 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-02-06 16:58:11 +0000 |
commit | 52bbc5d723e71729f9c60d5aa69186def355e352 (patch) | |
tree | 0314060661b2a2c2c29d92417a77330da29f157e /emulators/hercules | |
parent | 9a24d6a467e5d5e0e41aafc12668cb2eb92d7a5e (diff) | |
download | pkgsrc-52bbc5d723e71729f9c60d5aa69186def355e352.tar.gz |
Changes instances where BSD_INSTALL_* were used by targets in the Makefile
into the equivalent INSTALL_*. This is fallout from the change in
revision 1.915 that removed ${MAKE_ENV} from the environment for a
recursive make.
Diffstat (limited to 'emulators/hercules')
-rw-r--r-- | emulators/hercules/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/hercules/Makefile b/emulators/hercules/Makefile index 64dec5a43f3..60a23a65807 100644 --- a/emulators/hercules/Makefile +++ b/emulators/hercules/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/11/29 01:12:32 hubertf Exp $ +# $NetBSD: Makefile,v 1.10 2002/02/06 16:58:14 jlam Exp $ DISTNAME= hercules-2.11 PKGREVISION= 1 @@ -18,7 +18,7 @@ MAKE_ENV+= HOST_ARCH=${MACHINE_ARCH} pre-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/hercules - ${BSD_INSTALL_DATA} ${WRKSRC}/hercules.cnf ${PREFIX}/share/examples/hercules/ - ${BSD_INSTALL_DATA} ${WRKSRC}/zzsa.cnf ${PREFIX}/share/examples/hercules/ + ${INSTALL_DATA} ${WRKSRC}/hercules.cnf ${PREFIX}/share/examples/hercules/ + ${INSTALL_DATA} ${WRKSRC}/zzsa.cnf ${PREFIX}/share/examples/hercules/ .include "../../mk/bsd.pkg.mk" |