diff options
author | garga <garga@FreeBSD.org> | 2007-07-31 21:36:32 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2007-07-31 21:36:32 +0800 |
commit | 498768c6b1f17911d24a8ce8169ed60937f5de3f (patch) | |
tree | f3d64462f429791e31a64628cc33a2450eb356fe | |
parent | 7b5dbed353f5024a723f0070ac10f27ce11560ce (diff) | |
download | freebsd-ports-gnome-498768c6b1f17911d24a8ce8169ed60937f5de3f.tar.gz freebsd-ports-gnome-498768c6b1f17911d24a8ce8169ed60937f5de3f.tar.zst freebsd-ports-gnome-498768c6b1f17911d24a8ce8169ed60937f5de3f.zip |
- Fix a build problem caused by tr(1) using [:lower:] [:upper:] instead
[a-z] [A-Z]
- Bump PORTREVISION
-rw-r--r-- | textproc/yodl/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/yodl/Makefile b/textproc/yodl/Makefile index a5a9eba86906..0e75880f496f 100644 --- a/textproc/yodl/Makefile +++ b/textproc/yodl/Makefile @@ -7,7 +7,7 @@ PORTNAME= yodl PORTVERSION= 1.31.18 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= ftp://ftp.lilypond.org/pub/yodl/development/ \ http://www.foad.org/zsh/zsh/ \ @@ -36,6 +36,10 @@ MAN1= yodl.1 \ MAN7= yodlmacros.7 \ yodlmanpage.7 +post-patch: + @${REINPLACE_CMD} -e "s,tr '.*' '.*',tr '[:lower:]' '[:upper:]'," \ + ${WRKSRC}/src/yodl/GNUmakefile + post-install: @${INSTALL_SCRIPT} ${WRKSRC}/scripts/out/striproff ${PREFIX}/bin |