diff options
author | Adrian Robert <Adrian.B.Robert@gmail.com> | 2008-07-17 18:14:15 +0000 |
---|---|---|
committer | Adrian Robert <Adrian.B.Robert@gmail.com> | 2008-07-17 18:14:15 +0000 |
commit | 2a7973b62722e292302d6c03200771d33cb890bf (patch) | |
tree | d3ffe7871f6bdd683ba3b8fc15bb7d4eab09d341 /leim/Makefile.in | |
parent | 06b627700d30a166b0f06ad99166d448f9f7969c (diff) | |
download | emacs-2a7973b62722e292302d6c03200771d33cb890bf.tar.gz |
files were missed on previous checkin
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index 122156e5137..731f0d55312 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -33,6 +33,7 @@ prefix=@prefix@ datarootdir=@datarootdir@ datadir=@datadir@ srcdir=@srcdir@ +ns_appresdir=@ns_appresdir@ # Where to install LEIM files. INSTALLDIR=$(DESTDIR)${datadir}/emacs/${version}/leim @@ -259,6 +260,11 @@ install: all [ -n "$${installuser}" ] && break ; \ done ; \ find ${INSTALLDIR} -exec chown $${installuser} '{}' ';' + if [ "${ns_appresdir}" != "" ]; then \ + ( cd ${ns_appresdir} ; \ + if test -d share/emacs ; then mv -f share/emacs/*/* . ; fi ; \ + rm -fr share ) ; \ + else true ; fi clean mostlyclean: rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \ |