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 /irc/tirc | |
parent | cc2dc5fd2b0497078f0984b0b3a9123d7ede14e6 (diff) | |
download | ports-e40046b15dfb9ad5c4dcaa8137ef304b829ea59b.tar.gz ports-e40046b15dfb9ad5c4dcaa8137ef304b829ea59b.zip |
Clean up inefficient perl invocations; use multiple REs in the same call.
Notes
Notes:
svn path=/head/; revision=36897
Diffstat (limited to 'irc/tirc')
-rw-r--r-- | irc/tirc/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/irc/tirc/Makefile b/irc/tirc/Makefile index 3bfe562c9541..058ddf9b603a 100644 --- a/irc/tirc/Makefile +++ b/irc/tirc/Makefile @@ -18,8 +18,7 @@ MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX}" MAN1= tirc.1 post-patch: - @${PERL} -pi -e 's:__PREFIX__:${PREFIX}:g' ${WRKSRC}/*.c - @${PERL} -pi -e 's:__PREFIX__:${PREFIX}:g' ${WRKSRC}/*.1 + @${PERL} -pi -e 's:__PREFIX__:${PREFIX}:g' ${WRKSRC}/*.c ${WRKSRC}/*.1 post-install: strip ${PREFIX}/bin/tirc |