aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Robert2008-07-17 18:14:15 +0000
committerAdrian Robert2008-07-17 18:14:15 +0000
commit2a7973b62722e292302d6c03200771d33cb890bf (patch)
treed3ffe7871f6bdd683ba3b8fc15bb7d4eab09d341
parent06b627700d30a166b0f06ad99166d448f9f7969c (diff)
downloademacs-2a7973b62722e292302d6c03200771d33cb890bf.tar.gz
emacs-2a7973b62722e292302d6c03200771d33cb890bf.zip
files were missed on previous checkin
-rw-r--r--ChangeLog11
-rw-r--r--leim/ChangeLog5
-rw-r--r--leim/Makefile.in6
3 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5644ff7c819..4ffb098fb8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
12008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
2
3 * configure.in: Print out some info to user for NeXTstep builds.
4 (ns-app): Remove enable option.
5 (ns-self-contained): Add enable option.
6 (ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
7 GNUstep, use to set install prefixes, and substitute in Makefiles.
8 * configure: Regenerate.
9 * Makefile.in (install-arch-dep): Perform post-install cleanup inside
10 NS app bundle.
11
12008-07-17 Stefan Monnier <monnier@iro.umontreal.ca> 122008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
2 13
3 * configure.in: Extract and substitute GNUSTEP_MAKEFILES. 14 * configure.in: Extract and substitute GNUSTEP_MAKEFILES.
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 225e91f0df7..303c34036b5 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,8 @@
12008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
2
3 * Makefile.in (install): Perform post-install cleanup inside NS app
4 bundle.
5
12008-07-12 Juri Linkov <juri@jurta.org> 62008-07-12 Juri Linkov <juri@jurta.org>
2 7
3 * quail/rfc1345.el: Replace non-printable control characters with 8 * quail/rfc1345.el: Replace non-printable control characters with
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@
33datarootdir=@datarootdir@ 33datarootdir=@datarootdir@
34datadir=@datadir@ 34datadir=@datadir@
35srcdir=@srcdir@ 35srcdir=@srcdir@
36ns_appresdir=@ns_appresdir@
36 37
37# Where to install LEIM files. 38# Where to install LEIM files.
38INSTALLDIR=$(DESTDIR)${datadir}/emacs/${version}/leim 39INSTALLDIR=$(DESTDIR)${datadir}/emacs/${version}/leim
@@ -259,6 +260,11 @@ install: all
259 [ -n "$${installuser}" ] && break ; \ 260 [ -n "$${installuser}" ] && break ; \
260 done ; \ 261 done ; \
261 find ${INSTALLDIR} -exec chown $${installuser} '{}' ';' 262 find ${INSTALLDIR} -exec chown $${installuser} '{}' ';'
263 if [ "${ns_appresdir}" != "" ]; then \
264 ( cd ${ns_appresdir} ; \
265 if test -d share/emacs ; then mv -f share/emacs/*/* . ; fi ; \
266 rm -fr share ) ; \
267 else true ; fi
262 268
263clean mostlyclean: 269clean mostlyclean:
264 rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \ 270 rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \