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 /audio/rio/Makefile | |
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 'audio/rio/Makefile')
-rw-r--r-- | audio/rio/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/rio/Makefile b/audio/rio/Makefile index 1af55df0e2b..311b1d8092d 100644 --- a/audio/rio/Makefile +++ b/audio/rio/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2001/02/25 04:17:37 hubertf Exp $ +# $NetBSD: Makefile,v 1.6 2002/02/06 16:58:11 jlam Exp $ # DISTNAME= rio007 @@ -18,9 +18,9 @@ WRKSRC= ${WRKDIR}/rio107 MAKEFILE= makefile do-install: - ${BSD_INSTALL_PROGRAM} ${WRKSRC}/rio ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/rio ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/rio - ${BSD_INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/rio + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/rio ${SED} -e 's|@AWK@|${AWK}|g' ${FILESDIR}/find-lpt-port > ${PREFIX}/bin/find-lpt-port ${CHMOD} 755 ${PREFIX}/bin/find-lpt-port |