diff options
author | agc <agc> | 1998-05-15 13:55:35 +0000 |
---|---|---|
committer | agc <agc> | 1998-05-15 13:55:35 +0000 |
commit | be28a24ac93d7c5b14ed309fd2c500d42252bf4e (patch) | |
tree | 500a09b522d7a1f489cab9bf351166760608dcdd /audio/rplay | |
parent | 15f63ccc1134143ef63645db321494f9a624c680 (diff) | |
download | pkgsrc-be28a24ac93d7c5b14ed309fd2c500d42252bf4e.tar.gz |
Append a "/." to the ${WRKDIR} value in the find command, to ensure
that we traverse through any symbolic links. Make the misc/kp package
Makefile a bit neater - remove an unnecessary temporary file.
Diffstat (limited to 'audio/rplay')
-rw-r--r-- | audio/rplay/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/rplay/Makefile b/audio/rplay/Makefile index 7f9db745c0d..de8f0d3822d 100644 --- a/audio/rplay/Makefile +++ b/audio/rplay/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 1998/04/22 14:22:39 agc Exp $ +# $NetBSD: Makefile,v 1.10 1998/05/15 13:55:35 agc Exp $ # FreeBSD Id: Makefile,v 1.8 1997/06/13 16:17:01 ache Exp # @@ -21,7 +21,7 @@ MAN5= rplay.conf.5 rplay.hosts.5 rplay.servers.5 INFO_FILES= RPTP.info RPLAY.info rplay.info librplay.info pre-configure: - for f in `find ${WRKDIR} -type f -print|xargs $[GREP} -l '/usr/local'`; do \ + 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 chmod +x ${WRKSRC}/configure |