diff options
author | Will Andrews <will@FreeBSD.org> | 2001-01-07 17:49:52 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-01-07 17:49:52 +0000 |
commit | e40046b15dfb9ad5c4dcaa8137ef304b829ea59b (patch) | |
tree | 608ae9c87b150f1e38d0af957c8f5103a8dacaab /japanese/p5-Jcode | |
parent | cc2dc5fd2b0497078f0984b0b3a9123d7ede14e6 (diff) | |
download | freebsd-ports-e40046b15dfb9ad5c4dcaa8137ef304b829ea59b.zip |
Clean up inefficient perl invocations; use multiple REs in the same call.
Diffstat (limited to 'japanese/p5-Jcode')
-rw-r--r-- | japanese/p5-Jcode/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/japanese/p5-Jcode/Makefile b/japanese/p5-Jcode/Makefile index b8b9a3862ede..d6e84c229d0d 100644 --- a/japanese/p5-Jcode/Makefile +++ b/japanese/p5-Jcode/Makefile @@ -31,8 +31,8 @@ do-configure: @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ CC="${CC}" CCFLAGS="${CFLAGS}" .for DIR in Unicode Jcode - ${PERL} -pi -e "s:CCFLAGS = :CCFLAGS = ${CFLAGS}:g" ${WRKSRC}/${DIR}/Makefile - ${PERL} -pi -e "s:CC = cc:CC = ${CC}:g" ${WRKSRC}/${DIR}/Makefile + ${PERL} -pi -e "s:CCFLAGS = :CCFLAGS = ${CFLAGS}:g ; \ + s:CC = cc:CC = ${CC}:g" ${WRKSRC}/${DIR}/Makefile .endfor .include <bsd.port.post.mk> |