diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-07-20 00:25:25 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-07-20 00:25:25 +0000 |
commit | 132c2b9d7c35f1229e77e9b6422e78ec4be1df11 (patch) | |
tree | 03cbb7ba028bb7fc49fe9aad85ec00f6015d7a55 /japanese/mule-wnn6 | |
parent | 897790967348ca34f2bd8205a63ee4c05a0e56c9 (diff) | |
download | ports-132c2b9d7c35f1229e77e9b6422e78ec4be1df11.tar.gz ports-132c2b9d7c35f1229e77e9b6422e78ec4be1df11.zip |
Add a mkdir -p for share/emacs/site-lisp, just in case. Reverse the
order of the search for site-lisp (lib/mule is searched before
share/emacs now).
Notes
Notes:
svn path=/head/; revision=1998
Diffstat (limited to 'japanese/mule-wnn6')
-rw-r--r-- | japanese/mule-wnn6/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/japanese/mule-wnn6/Makefile b/japanese/mule-wnn6/Makefile index f20670cbcdd2..5d4373c9a183 100644 --- a/japanese/mule-wnn6/Makefile +++ b/japanese/mule-wnn6/Makefile @@ -3,7 +3,7 @@ # Date created: 22 November 1994 # Whom: Satoshi Asami (asami) # -# $Id: Makefile,v 1.18 1995/04/23 10:35:30 asami Exp $ +# $Id: Makefile,v 1.19 1995/06/27 10:45:42 asami Exp $ # DISTNAME= mule-2.2 @@ -30,7 +30,7 @@ USE_GMAKE= yes CONFIGURE_ARGS= i386--freebsd --prefix=${PREFIX} --with-x-toolkit \ --wnn --wnn-libraries=/usr/X11R6/lib \ --wnn-includes=/usr/X11R6/include/wnn --terminal-face \ - --locallisppath=${PREFIX}/share/emacs/site-lisp:${PREFIX}/lib/mule/site-lisp + --locallisppath=${PREFIX}/lib/mule/site-lisp:${PREFIX}/share/emacs/site-lisp STRIP= pre-build: @@ -49,5 +49,8 @@ post-install: gzip -9nf ${PREFIX}/man/man1/etags.1 gzip -9nf ${PREFIX}/man/man1/m2ps.1 gzip -9nf ${PREFIX}/man/man1/mule.1 + if [ ! -d ${PREFIX}/share/emacs/site-lisp ]; then \ + mkdir -p ${PREFIX}/share/emacs/site-lisp ]; \ + fi .include <bsd.port.mk> |