diff options
author | taoka <taoka@FreeBSD.org> | 1999-04-06 01:15:03 +0000 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 1999-04-06 01:15:03 +0000 |
commit | 54e37f567f3de449a4f40ee6f2024f9ef135d273 (patch) | |
tree | 235ba94ac3581b88b87c9ece230b75d7e95fa58c | |
parent | 6150f290e77906a618530c60da637648519ee05b (diff) | |
download | FreeBSD-ports-54e37f567f3de449a4f40ee6f2024f9ef135d273.zip FreeBSD-ports-54e37f567f3de449a4f40ee6f2024f9ef135d273.tar.gz |
Fixed "install-man" target in /usr/ports/japanese/tk80/Makefile
PR: ports/10915
Submitted by: haro@tk.kubota.co.jp (Munehiro Matsuda)
-rw-r--r-- | japanese/tk80/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/japanese/tk80/Makefile b/japanese/tk80/Makefile index f6b49dc..14b8573 100644 --- a/japanese/tk80/Makefile +++ b/japanese/tk80/Makefile @@ -3,7 +3,7 @@ # Date created: 26 Dec 1997 # Whom: taguchi@tohoku.iij.ad.jp # -# $Id: Makefile,v 1.10 1999/01/20 10:53:01 flathill Exp $ +# $Id: Makefile,v 1.11 1999/04/02 02:38:04 taoka Exp $ # DISTNAME= tk8.0.5 @@ -57,9 +57,9 @@ post-install: @${CAT} ${PKGDIR}/MESSAGE test: - cd ${WRKSRC} && ${MAKE} test + cd ${WRKSRC} && PORTOBJFORMAT=${PORTOBJFORMAT} ${MAKE} test install-man: - cd ${WRKSRC} && ${MAKE} install-man + cd ${WRKSRC} && ${SETENV} PORTOBJFORMAT=${PORTOBJFORMAT} ${MAKE} install-man .include <bsd.port.post.mk> |