diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-02-24 02:09:27 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-02-24 02:09:27 +0000 |
commit | a5bbac3e9351e2973e9ef0c195e1f2505c0f82ce (patch) | |
tree | 70727e784d3f7afb94af5abbe85e19fdb1b18fa7 /net/arla | |
parent | 77bde4476f7786a6de67d27d193ad235ae99dad2 (diff) | |
download | pkgsrc-a5bbac3e9351e2973e9ef0c195e1f2505c0f82ce.tar.gz |
First round of cleaning up INSTALL usage:
INSTALL -d => INSTALL_*_DIR
INSTALL => INSTALL_*
Beware that only invocations are changed that don't set special
values for owner, mode or group!
Cleanup suggested by zuntum@IRC
Diffstat (limited to 'net/arla')
-rw-r--r-- | net/arla/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/arla/Makefile b/net/arla/Makefile index bee531c6e86..2d7d0a7b6e7 100644 --- a/net/arla/Makefile +++ b/net/arla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2001/02/17 18:18:33 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2001/02/24 02:09:29 hubertf Exp $ # DISTNAME= arla-0.34.5 @@ -107,9 +107,9 @@ post-install: @${SED} -e 's|@PREFIX@|${PREFIX}|g' \ < ${FILESDIR}/lkm.conf \ > ${PREFIX}/share/examples/arla/lkm.conf - @${INSTALL} -c -o root -g wheel -m 444 \ + @${INSTALL_DATA} \ ${FILESDIR}/services ${PREFIX}/share/examples/arla - @${INSTALL} -c -o root -g wheel -m 444 \ + @${INSTALL_DATA} \ ${FILESDIR}/fstab ${PREFIX}/share/examples/arla @${SED} -e 's|@PREFIX@|${PREFIX}|' ${FILESDIR}/arlad.sh \ > ${PREFIX}/etc/rc.d/arlad |