summaryrefslogtreecommitdiff
path: root/java/jdk12
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 /java/jdk12
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 'java/jdk12')
-rw-r--r--java/jdk12/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/java/jdk12/Makefile b/java/jdk12/Makefile
index 9bda99e92da2..168fe82f5c25 100644
--- a/java/jdk12/Makefile
+++ b/java/jdk12/Makefile
@@ -146,8 +146,9 @@ post-build:
done; \
done
for dir in ${JDKIMAGEDIR} ${JREIMAGEDIR}; do \
- find $${dir} -type f | xargs file | ${GREP} 'not stripped$$' | \
- ${SED} 's|:.*$$||' | xargs strip; \
+ ${FIND} $${dir} -type f | ${XARGS} file | \
+ ${GREP} 'not stripped$$' | \
+ ${SED} 's|:.*$$||' | ${XARGS} strip; \
done
.if !defined(NODEBUG)