diff options
author | hubertf <hubertf@pkgsrc.org> | 1998-01-24 23:33:13 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1998-01-24 23:33:13 +0000 |
commit | 240a6f2d39dfb4b1bac09c222243da082fe10f5b (patch) | |
tree | 33d1991e1ca4ddff13e0a9bf2061b1a75e59111a /sysutils/rtty | |
parent | 4b0de695d778224b2cb45b8e96fceb3871c2213a (diff) | |
download | pkgsrc-240a6f2d39dfb4b1bac09c222243da082fe10f5b.tar.gz |
portlint: change order of lines, use cmd macros
Diffstat (limited to 'sysutils/rtty')
-rw-r--r-- | sysutils/rtty/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sysutils/rtty/Makefile b/sysutils/rtty/Makefile index d86374dce29..33789746438 100644 --- a/sysutils/rtty/Makefile +++ b/sysutils/rtty/Makefile @@ -5,7 +5,7 @@ # # Author: Paul Vixie / Internet Software Consortium # -# $NetBSD: Makefile,v 1.3 1997/10/29 11:28:00 agc Exp $ +# $NetBSD: Makefile,v 1.4 1998/01/24 23:33:13 hubertf Exp $ # FreeBSD Id: Makefile,v 1.3 1997/01/06 12:13:36 jkh Exp # @@ -13,14 +13,16 @@ DISTNAME= rtty-3.2 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.vix.com/pub/vixie/ -NO_WRKSUBDIR= yes +MAINTAINER= packages@netbsd.org + +NO_WRKSUBDIR= yes OPSYS!= uname -s - + .if (${OPSYS} == "NetBSD") pre-configure: - for f in `find ${WRKDIR} -type f -print|xargs grep -l '/usr/local'`; do \ - ${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f > $$f.pdone && mv $$f.pdone $$f; \ + for f in `find ${WRKDIR} -type f -print|xargs ${GREP} -l '/usr/local'`; do \ + ${SED} -e 's:/usr/local:'${PREFIX}':g' < $$f > $$f.pdone && ${MV} $$f.pdone $$f; \ done .endif |