diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-13 21:30:42 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-13 21:30:42 +0800 |
commit | 0a792d129c721bbf05ec4507020041dae7ccb939 (patch) | |
tree | 5443a6df79f666d3a39d8c4f9b5f89991dc6ce44 /math/p5-Math-SimpleVariable | |
parent | 0bfadbd86b2e8399c2d3221e66321fc0dc66cab1 (diff) | |
download | freebsd-ports-graphics-0a792d129c721bbf05ec4507020041dae7ccb939.tar.gz freebsd-ports-graphics-0a792d129c721bbf05ec4507020041dae7ccb939.tar.zst freebsd-ports-graphics-0a792d129c721bbf05ec4507020041dae7ccb939.zip |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'math/p5-Math-SimpleVariable')
-rw-r--r-- | math/p5-Math-SimpleVariable/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/p5-Math-SimpleVariable/Makefile b/math/p5-Math-SimpleVariable/Makefile index 8562aea2262..b5fd3bcf2e7 100644 --- a/math/p5-Math-SimpleVariable/Makefile +++ b/math/p5-Math-SimpleVariable/Makefile @@ -23,7 +23,7 @@ PERL_CONFIGURE= yes MAN3= Math::SimpleVariable.3 pre-patch: - @${FIND} ${WRKSRC} -name "*.pm" | xargs ${PERL} -pi -e \ + @${FIND} ${WRKSRC} -name "*.pm" | ${XARGS} ${PERL} -pi -e \ '$$package=$$1 if /^package\s+([^\s;]*);/; s!^require 5.005_62;!!; s!^use warnings;!!; s!^our\s+(\$$)(VERSION)\s+=!$$1$${package}::$$2=!;' .include <bsd.port.mk> |