diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
commit | 89e9e517a9f1c97f22317b99b12b1133075eab02 (patch) | |
tree | faad1b92712e2988cd55bc71cc77494abb6ed655 /net/arpwatch-devel | |
parent | 164234dfead0f28fb873b763e6f378cb3313f426 (diff) | |
download | FreeBSD-ports-89e9e517a9f1c97f22317b99b12b1133075eab02.zip FreeBSD-ports-89e9e517a9f1c97f22317b99b12b1133075eab02.tar.gz |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'net/arpwatch-devel')
-rw-r--r-- | net/arpwatch-devel/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/arpwatch-devel/Makefile b/net/arpwatch-devel/Makefile index f47bd6a..3651b22 100644 --- a/net/arpwatch-devel/Makefile +++ b/net/arpwatch-devel/Makefile @@ -3,7 +3,7 @@ # Date created: March 24 1997 # Whom: Brian Somers <brian@Awfulhak.org> # -# $Id: Makefile,v 1.9 1998/08/21 18:09:19 brian Exp $ +# $Id: Makefile,v 1.10 1998/08/22 02:13:51 brian Exp $ # DISTNAME= arpwatch-2.1a4 @@ -23,11 +23,11 @@ MAN8= arpwatch.8 arpsnmp.8 post-install: if [ ! -d ${PREFIX}/arpwatch ]; then \ ${MKDIR} ${PREFIX}/arpwatch; \ - chmod 775 ${PREFIX}/arpwatch; \ - chown root.operator ${PREFIX}/arpwatch; \ + ${CHMOD} 775 ${PREFIX}/arpwatch; \ + ${CHOWN} root.operator ${PREFIX}/arpwatch; \ fi ${TOUCH} ${PREFIX}/arpwatch/arp.dat - chmod 644 ${PREFIX}/arpwatch/arp.dat + ${CHMOD} 644 ${PREFIX}/arpwatch/arp.dat for file in ethercodes.dat d.awk e.awk p.awk; do \ ${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/arpwatch/.; \ done |