diff options
author | shige <shige@FreeBSD.org> | 1999-03-09 12:41:46 +0800 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 1999-03-09 12:41:46 +0800 |
commit | 540417292bad3bbaedcd39d9eed5ab5543f7944f (patch) | |
tree | dd2be9dc74a433f24b246f6de046ba0bc56f457f /editors | |
parent | 492d25b71f4aa049e41776ae22efd58cbfcc86d8 (diff) | |
download | freebsd-ports-gnome-540417292bad3bbaedcd39d9eed5ab5543f7944f.tar.gz freebsd-ports-gnome-540417292bad3bbaedcd39d9eed5ab5543f7944f.tar.zst freebsd-ports-gnome-540417292bad3bbaedcd39d9eed5ab5543f7944f.zip |
Use ${MV}, ${CAT} and ${ECHO_MSG}.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/wemi-emacs20/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/editors/wemi-emacs20/Makefile b/editors/wemi-emacs20/Makefile index 8ce7dbd23826..fa981fae8944 100644 --- a/editors/wemi-emacs20/Makefile +++ b/editors/wemi-emacs20/Makefile @@ -3,7 +3,7 @@ # Date created: 23 September 1998 # Whom: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp> # -# $Id: Makefile,v 1.5 1999/02/22 02:48:46 steve Exp $ +# $Id: Makefile,v 1.6 1999/03/01 09:37:49 shige Exp $ # DISTNAME= wemi-${WEMI_VER} @@ -47,18 +47,14 @@ BUILD_DEPENDS+= nkf:${PORTSDIR}/japanese/nkf .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 300006 MAKEINFO= makeinfo --no-split --no-validate -.else -MAKEINFO= makeinfo --no-split -.endif post-build: @(cd ${WRKSRC} ; \ for i in mime-ui-en.texi mime-ui-ja.texi; do \ - mv $${i} $${i}.jis ; \ - cat $${i}.jis | nkf -e > $${i} ; \ - echo "===> Please ignore the following errors." ; \ + ${MV} $${i} $${i}.jis ; \ + ${CAT} $${i}.jis | nkf -e > $${i} ; \ + ${ECHO_MSG} "===> Please ignore the following errors." ; \ ${MAKEINFO} $${i} || ${TRUE} ; \ done) |