diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-05-20 10:25:12 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-05-20 10:25:12 +0000 |
commit | 61770d0a45ec0a92369b182ea8a170d09672af41 (patch) | |
tree | 8e75fe8a13a30330843ab8253c74b8fed07946d0 /editors/emacs19/Makefile | |
parent | If you miss the freeze I did (diff) |
Spread info dir entries into all relevant files. The previous version
(with all entries listed in emacs.texi) deleted only the first entry
when the user did a pkg_delete (a bug in install-info, maybe?).
Notes
Notes:
svn path=/head/; revision=6514
Diffstat (limited to 'editors/emacs19/Makefile')
-rw-r--r-- | editors/emacs19/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/editors/emacs19/Makefile b/editors/emacs19/Makefile index ba9d2e90e233..a3e1006986f0 100644 --- a/editors/emacs19/Makefile +++ b/editors/emacs19/Makefile @@ -3,7 +3,7 @@ # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.26 1996/11/19 13:14:40 asami Exp $ +# $Id: Makefile,v 1.27 1997/04/18 10:48:33 asami Exp $ # DISTNAME= emacs-19.34b @@ -18,12 +18,14 @@ STRIP= MAN1= emacs.1 etags.1 ctags.1 post-install: - for file in emacs-19.34 emacsclient etags ctags b2m; do \ - strip ${PREFIX}/bin/$$file; \ - done +.for file in emacs-19.34 emacsclient etags ctags b2m + strip ${PREFIX}/bin/${file} +.endfor if [ ! -f ${PREFIX}/info/dir ]; then \ sed -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi - install-info ${PREFIX}/info/emacs ${PREFIX}/info/dir +.for info in emacs vip viper forms gnus mh-e cl sc dired-x ediff ccmode + install-info ${PREFIX}/info/${info} ${PREFIX}/info/dir +.endfor .include <bsd.port.mk> |