diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-23 04:23:59 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-23 04:23:59 +0000 |
commit | 0fffe45ec3833012ad0b48b6c5e642a8f1496f69 (patch) | |
tree | 6bf136d74d7389168d44584e8902dc29cd0cbdb7 /security/skip | |
parent | 820255ee78a7121e2592cac5ced0b3b847b832c2 (diff) | |
download | FreeBSD-ports-0fffe45ec3833012ad0b48b6c5e642a8f1496f69.zip FreeBSD-ports-0fffe45ec3833012ad0b48b6c5e642a8f1496f69.tar.gz |
grep -> ${GREP}
true -> ${TRUE}
false -> ${FALSE}
Diffstat (limited to 'security/skip')
-rw-r--r-- | security/skip/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/skip/Makefile b/security/skip/Makefile index 9f7bef9..76755f0 100644 --- a/security/skip/Makefile +++ b/security/skip/Makefile @@ -3,7 +3,7 @@ # Date created: 26 November 1997 # Whom: Archie L. Cobbs <archie@whistle.com> # -# $Id: Makefile,v 1.8 1999/07/22 18:37:04 archie Exp $ +# $Id: Makefile,v 1.9 1999/07/31 21:48:34 archie Exp $ DISTNAME= skip-1.0 CATEGORIES= security @@ -50,7 +50,7 @@ MAN4= skipd.conf.4 raw_keys.4 post-patch: @find ${WRKSRC} -name '*.orig' -print | xargs rm @cd ${WRKSRC}; \ - FILES=`find . -type f -print | xargs grep -l @@PREFIX@@`; \ + FILES=`find . -type f -print | xargs ${GREP} -l @@PREFIX@@`; \ for FILE in $$FILES; do \ sed 's!@@PREFIX@@!${PREFIX}!g' < $$FILE > $$FILE.new ; \ mv $$FILE.new $$FILE; \ |