diff options
author | SADA Kenji <sada@FreeBSD.org> | 1999-04-19 16:44:51 +0000 |
---|---|---|
committer | SADA Kenji <sada@FreeBSD.org> | 1999-04-19 16:44:51 +0000 |
commit | 11d826770ba53cd93e078621648247f108e3f921 (patch) | |
tree | 4b0cf2b687d94fc333853bc7e28cdcfff3f27801 /editors/wemi-emacs20 | |
parent | 639cb13ab147419f7ac710d35262489921fb8020 (diff) |
PR: ports/11210
Submitted by: KUNISHIMA Takeo <kunishi@c.oka-pu.ac.jp>
editors/wemi-emacs20 and editors/wemi-emacs20-current fail to
'make install' unless `NOPORTDOCS' option is set.
Notes
Notes:
svn path=/head/; revision=18006
Diffstat (limited to 'editors/wemi-emacs20')
-rw-r--r-- | editors/wemi-emacs20/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/editors/wemi-emacs20/Makefile b/editors/wemi-emacs20/Makefile index fa981fae8944..43288ebadab7 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.6 1999/03/01 09:37:49 shige Exp $ +# $Id: Makefile,v 1.7 1999/03/09 04:41:46 shige Exp $ # DISTNAME= wemi-${WEMI_VER} @@ -66,9 +66,10 @@ post-install: done) .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/${WEMIDOCDIR} - @for i in ChangeLog NEWS README.* TODO VERSION ; do \ - ${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/${WEMIDOCDIR}/ ; \ - done + @(cd ${WRKSRC} ; \ + for i in ChangeLog NEWS README.* TODO VERSION ; do \ + ${INSTALL_DATA} $${i} ${PREFIX}/${WEMIDOCDIR}/ ; \ + done) .endif .include <bsd.port.post.mk> |