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 /editors/mule-common | |
parent | Upgrade 1.14.4 -> 1.14.5 (diff) |
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 'editors/mule-common')
-rw-r--r-- | editors/mule-common/Makefile | 7 | ||||
-rw-r--r-- | editors/mule-common/pkg-plist | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/editors/mule-common/Makefile b/editors/mule-common/Makefile index 017342ecf631..8064b2f6f5f9 100644 --- a/editors/mule-common/Makefile +++ b/editors/mule-common/Makefile @@ -3,7 +3,7 @@ # Date created: 22 November 1994 # Whom: Satoshi Asami (asami) # -# $Id: Makefile,v 1.18 1995/04/23 10:33:33 asami Exp $ +# $Id: Makefile,v 1.19 1995/06/27 10:45:31 asami Exp $ # DISTNAME= mule-2.2 @@ -25,7 +25,7 @@ HAS_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ARGS= i386--freebsd --prefix=${PREFIX} --with-x-toolkit \ --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= @@ -41,5 +41,8 @@ post-install: gzip -9nf ${PREFIX}/man/man1/coco.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> diff --git a/editors/mule-common/pkg-plist b/editors/mule-common/pkg-plist index a329e4a41d5f..9d7f9ba8a9cb 100644 --- a/editors/mule-common/pkg-plist +++ b/editors/mule-common/pkg-plist @@ -1,4 +1,4 @@ -@cwd /usr/local +@exec mkdir -p %D/share/emacs/site-lisp @exec mkdir -p %D/lib/mule/site-lisp @exec mkdir -p %D/lib/mule/lock @exec chmod 777 %D/lib/mule/lock |