diff options
| author | Adrian Robert | 2008-07-17 18:14:15 +0000 |
|---|---|---|
| committer | Adrian Robert | 2008-07-17 18:14:15 +0000 |
| commit | 2a7973b62722e292302d6c03200771d33cb890bf (patch) | |
| tree | d3ffe7871f6bdd683ba3b8fc15bb7d4eab09d341 | |
| parent | 06b627700d30a166b0f06ad99166d448f9f7969c (diff) | |
| download | emacs-2a7973b62722e292302d6c03200771d33cb890bf.tar.gz emacs-2a7973b62722e292302d6c03200771d33cb890bf.zip | |
files were missed on previous checkin
| -rw-r--r-- | ChangeLog | 11 | ||||
| -rw-r--r-- | leim/ChangeLog | 5 | ||||
| -rw-r--r-- | leim/Makefile.in | 6 |
3 files changed, 22 insertions, 0 deletions
| @@ -1,3 +1,14 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca> | 12 | 2008-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 @@ | |||
| 1 | 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com> | ||
| 2 | |||
| 3 | * Makefile.in (install): Perform post-install cleanup inside NS app | ||
| 4 | bundle. | ||
| 5 | |||
| 1 | 2008-07-12 Juri Linkov <juri@jurta.org> | 6 | 2008-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@ | |||
| 33 | datarootdir=@datarootdir@ | 33 | datarootdir=@datarootdir@ |
| 34 | datadir=@datadir@ | 34 | datadir=@datadir@ |
| 35 | srcdir=@srcdir@ | 35 | srcdir=@srcdir@ |
| 36 | ns_appresdir=@ns_appresdir@ | ||
| 36 | 37 | ||
| 37 | # Where to install LEIM files. | 38 | # Where to install LEIM files. |
| 38 | INSTALLDIR=$(DESTDIR)${datadir}/emacs/${version}/leim | 39 | INSTALLDIR=$(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 | ||
| 263 | clean mostlyclean: | 269 | clean mostlyclean: |
| 264 | rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \ | 270 | rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \ |