diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
commit | f725dc8ef5848b5e69ebefdc7c1f1517f26643fb (patch) | |
tree | 61e738084a4bfbaac41e371a863552bfb8c6ed2a /www/neowebscript/Makefile | |
parent | Use the FIND and XARGS macros introduced in bsd.port.mk 1.391. (diff) |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Notes
Notes:
svn path=/head/; revision=93885
Diffstat (limited to 'www/neowebscript/Makefile')
-rw-r--r-- | www/neowebscript/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/neowebscript/Makefile b/www/neowebscript/Makefile index 4f1022c0a93c..6e1cdac39249 100644 --- a/www/neowebscript/Makefile +++ b/www/neowebscript/Makefile @@ -31,11 +31,11 @@ EXTRACT_AFTER_ARGS:=| ${TAR} -xf - ${SUBDIRS:%=${PORTNAME}-${PORTVERSION}/%} post-patch: # Replacing writeGIF with writePNG ${PERL} -pi -e 's/writeGIF/writePNG/g' \ - `find ${WRKSRC}/.. -type f | xargs fgrep -l --mmap writeGIF` + `${FIND} ${WRKSRC}/.. -type f|${XARGS} fgrep -l --mmap writeGIF` pre-install: # Removing *.orig files and empty directories: - find ${WRKSRC}/../neowebscript ${WRKSRC}/../htdocs \ + ${FIND} ${WRKSRC}/../neowebscript ${WRKSRC}/../htdocs \ \( -type f -name \*.orig -o -type d -empty \) -delete CONFSCRIPT= ${LOCALBASE}/etc/apache/neowebscript.conf |