diff options
author | mezz <mezz@FreeBSD.org> | 2005-06-15 03:58:41 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2005-06-15 03:58:41 +0800 |
commit | b73bbaef483b7822752216cc964006411a49c48b (patch) | |
tree | 3d5633059784840fccee132757049c9d2fd8881f /graphics/cbview | |
parent | ed58b1ca1fa13977672929c6bc550cf2b8b6028c (diff) | |
download | freebsd-ports-gnome-b73bbaef483b7822752216cc964006411a49c48b.tar.gz freebsd-ports-gnome-b73bbaef483b7822752216cc964006411a49c48b.tar.zst freebsd-ports-gnome-b73bbaef483b7822752216cc964006411a49c48b.zip |
Got bite by -w when I upgraded my desktop to 6.0-CURRENT.
% cbview
env: perl -w: No such file or directory
Remove -w and bump the PORTREVISION.
Diffstat (limited to 'graphics/cbview')
-rw-r--r-- | graphics/cbview/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/cbview/Makefile b/graphics/cbview/Makefile index a33cb863e66a..212dd1b10e4e 100644 --- a/graphics/cbview/Makefile +++ b/graphics/cbview/Makefile @@ -7,7 +7,7 @@ PORTNAME= cbview PORTVERSION= 0.06 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics perl5 MASTER_SITES= http://elvine.org/code/cbview/ @@ -27,7 +27,7 @@ PLIST_FILES= bin/${PORTNAME} PORTDOCS= COPYING Changes INSTALL README TODO post-patch: - @${REINPLACE_CMD} -e 's|perl -w|env perl -w|g' \ + @${REINPLACE_CMD} -e 's|perl -w|env perl|g' \ ${WRKSRC}/${PORTNAME} do-install: |