summaryrefslogtreecommitdiff
path: root/games/utserver-to/Makefile
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2003-11-13 14:45:08 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2003-11-13 14:45:08 +0000
commite99ceadaf6c77b80c19e16d91306e944305b1c88 (patch)
treee8a8f4dac51e148717ae07e2de0c635ec5d58833 /games/utserver-to/Makefile
parentUpdate to 1.0.47. (diff)
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Notes
Notes: svn path=/head/; revision=93890
Diffstat (limited to '')
-rw-r--r--games/utserver-to/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/utserver-to/Makefile b/games/utserver-to/Makefile
index 04a5fceb6efc..c4ea2e4ac12b 100644
--- a/games/utserver-to/Makefile
+++ b/games/utserver-to/Makefile
@@ -66,12 +66,12 @@ post-extract:
pre-patch:
# remove trailing ^M
- @find -E ${WRKDIR} -type f \
+ @${FIND} -E ${WRKDIR} -type f \
-iregex ".*\.(bat|cfg|gam|htm|html|inf|ini|int|lst|pl|pm|sc|sh|scr|txt|url|uhtm)" \
-exec ${PERL} -pi -ne 's!\r\n!\n!' {} 1>/dev/null 2>&1 \;
.ifdef(EXTRA_CLEAN_FILES)
.for pattern in ${EXTRA_CLEAN_FILES}
- @find -E ${WRKDIR} -type f \
+ @${FIND} -E ${WRKDIR} -type f \
-iregex "${pattern}" \
-exec ${PERL} -pi -ne 's!\r\n!\n!' {} 1>/dev/null 2>&1 \;
.endfor