diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 13:30:42 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 13:30:42 +0000 |
commit | bb34de42c0ccac8e962cab97e064965d23f081de (patch) | |
tree | dd40b82023ab94a6839b4f4d440c3cd5cab978ee /lang/eperl | |
parent | I forgot to add two patch files in the last commit, and broke the GTK2 (diff) |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'lang/eperl')
-rw-r--r-- | lang/eperl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/eperl/Makefile b/lang/eperl/Makefile index 89e8648f25ba..675baab58bc5 100644 --- a/lang/eperl/Makefile +++ b/lang/eperl/Makefile @@ -35,7 +35,8 @@ test: @(cd ${WRKSRC}; ${MAKE} test) post-patch: - @${FIND} ${WRKSRC} -type f -name "*.[ch]" | xargs ${GREP} -l strnstr | \ + @${FIND} ${WRKSRC} -type f -name "*.[ch]" | \ + ${XARGS} ${GREP} -l strnstr | \ ${XARGS} ${PERL} -pi -e 's|strnstr|ePerl_strnstr|g' do-install: |