diff options
author | asami <asami@FreeBSD.org> | 1995-07-20 00:25:25 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-07-20 00:25:25 +0000 |
commit | 50807301bf19befa18218182fa43bbc6a09dd6af (patch) | |
tree | beaeaa208f94f3ef99444ddcf021865858d78129 /editors/mule-common/Makefile | |
parent | 818a30734e0165aabfcb6c2251cc7078cbc89e53 (diff) | |
download | FreeBSD-ports-50807301bf19befa18218182fa43bbc6a09dd6af.zip FreeBSD-ports-50807301bf19befa18218182fa43bbc6a09dd6af.tar.gz |
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).
Diffstat (limited to 'editors/mule-common/Makefile')
-rw-r--r-- | editors/mule-common/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/editors/mule-common/Makefile b/editors/mule-common/Makefile index 017342e..8064b2f 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> |