diff options
author | jlam <jlam@pkgsrc.org> | 2002-02-06 16:58:11 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-02-06 16:58:11 +0000 |
commit | 7046abc822c457a46356fad85e66757b13c0841d (patch) | |
tree | 0314060661b2a2c2c29d92417a77330da29f157e /audio | |
parent | d93fe0cd603b60e69ea77059d773740a1d6c4733 (diff) | |
download | pkgsrc-7046abc822c457a46356fad85e66757b13c0841d.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')
-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 |