diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
commit | 5281212be38447df70380d4e9e8cd0ef1cf11517 (patch) | |
tree | 655e734faae358d2c0edeefd08e9aeac6202b150 /net-mgmt/arpwatch/Makefile | |
parent | acfa648bd4bbbfcd4dd84f668832b2ab47009cbd (diff) | |
download | ports-5281212be38447df70380d4e9e8cd0ef1cf11517.tar.gz ports-5281212be38447df70380d4e9e8cd0ef1cf11517.zip |
Notes
Diffstat (limited to 'net-mgmt/arpwatch/Makefile')
-rw-r--r-- | net-mgmt/arpwatch/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-mgmt/arpwatch/Makefile b/net-mgmt/arpwatch/Makefile index f47bd6a1f320..3651b220e851 100644 --- a/net-mgmt/arpwatch/Makefile +++ b/net-mgmt/arpwatch/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 |