[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/Makefile.in,v
From: |
Adrian Robert |
Subject: |
[Emacs-diffs] Changes to emacs/Makefile.in,v |
Date: |
Tue, 15 Jul 2008 18:15:22 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Adrian Robert <arobert> 08/07/15 18:15:19
Index: Makefile.in
===================================================================
RCS file: /sources/emacs/emacs/Makefile.in,v
retrieving revision 1.356
retrieving revision 1.357
diff -u -b -r1.356 -r1.357
--- Makefile.in 25 Jun 2008 15:46:23 -0000 1.356
+++ Makefile.in 15 Jul 2008 18:14:52 -0000 1.357
@@ -137,7 +137,7 @@
address@hidden@
INFO_FILES=ada-mode autotype calc ccmode cl dbus dired-x ebrowse ediff \
efaq eintr elisp emacs emacs-mime epa erc eshell eudc \
- flymake forms gnus idlwave info message mh-e newsticker \
+ flymake forms gnus idlwave info message mh-e newsticker ns-emacs \
nxml-mode org pcl-cvs pgg rcirc reftex remember sasl sc ses \
sieve speedbar tramp vip viper widget woman smtpmail url
@@ -167,6 +167,9 @@
# Location to install Emacs.app on Mac OS X
address@hidden@
+# Location to install Emacs.app under NeXT/Open/GNUstep / Cocoa
address@hidden@
+
# Where the etc/emacs.desktop file is to be installed.
desktopdir=$(datarootdir)/applications
@@ -411,6 +414,14 @@
(cd $(DESTDIR)${carbon_appdir}/Emacs.app; umask 022; tar -xvf -
\
&& cat > /dev/null))) || exit 1; \
fi
+ if test "${ns_appdir}" != ""; then \
+ umask 022; mkdir -p ${ns_appdir}/Emacs.app; \
+ (cd nextstep/build/Emacs.app; (tar -chf - . | \
+ (cd ${ns_appdir}/Emacs.app; umask 022; tar -xvf - \
+ && cat > /dev/null))) || exit 1; \
+ ( cd site-lisp ; tar chf - . ) | \
+ ( cd ${datadir}/$(EMACSFULL)/site-lisp ; tar xf - ) \
+ fi
## http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01672.html
## Needs to be the user running install, so configure can't set it.
- [Emacs-diffs] Changes to emacs/Makefile.in,v,
Adrian Robert <=