diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 02:17:34 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-28 02:17:34 +0000 |
commit | 8d6f14a9b2d73e9a9cbd3f785b162547d769b53a (patch) | |
tree | 90ea645cc70e1ef2db1513c426e5aeb6eb33f840 /security/skip | |
parent | ln -> ${LN} (diff) |
sed -> ${SED}
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 76755f046a36..b5811a22d930 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.9 1999/07/31 21:48:34 archie Exp $ +# $Id: Makefile,v 1.10 1999/08/23 04:23:42 mharo Exp $ DISTNAME= skip-1.0 CATEGORIES= security @@ -52,7 +52,7 @@ post-patch: @cd ${WRKSRC}; \ FILES=`find . -type f -print | xargs ${GREP} -l @@PREFIX@@`; \ for FILE in $$FILES; do \ - sed 's!@@PREFIX@@!${PREFIX}!g' < $$FILE > $$FILE.new ; \ + ${SED} 's!@@PREFIX@@!${PREFIX}!g' < $$FILE > $$FILE.new ; \ mv $$FILE.new $$FILE; \ done |