aboutsummaryrefslogtreecommitdiffstats
path: root/nextstep
diff options
context:
space:
mode:
Diffstat (limited to 'nextstep')
-rw-r--r--nextstep/ChangeLog10
-rw-r--r--nextstep/Makefile.in7
2 files changed, 14 insertions, 3 deletions
diff --git a/nextstep/ChangeLog b/nextstep/ChangeLog
index d76d832555c..42086ec1007 100644
--- a/nextstep/ChangeLog
+++ b/nextstep/ChangeLog
@@ -1,3 +1,13 @@
12013-09-02 Jan Djärv <jan.h.d@swipnet.se>
2
3 * Makefile.in (${ns_check_file}): Add so Emacs.app gets properly
4 updated when doing parallel make install.
5
62013-08-28 Paul Eggert <eggert@cs.ucla.edu>
7
8 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
9 for portability to hosts where /bin/sh has problems.
10
12013-06-02 Jan Djärv <jan.h.d@swipnet.se> 112013-06-02 Jan Djärv <jan.h.d@swipnet.se>
2 12
3 * templates/Info-gnustep.plist.in: Add NSDocumentClass EmacsDocument. 13 * templates/Info-gnustep.plist.in: Add NSDocumentClass EmacsDocument.
diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in
index feeafc0d694..3d80ddb7ad2 100644
--- a/nextstep/Makefile.in
+++ b/nextstep/Makefile.in
@@ -20,7 +20,7 @@
20### Commentary: 20### Commentary:
21 21
22### Code: 22### Code:
23SHELL = /bin/sh 23SHELL = @SHELL@
24 24
25srcdir = @srcdir@ 25srcdir = @srcdir@
26EXEEXT = @EXEEXT@ 26EXEEXT = @EXEEXT@
@@ -31,8 +31,9 @@ MKDIR_P = @MKDIR_P@
31ns_appdir = @ns_appdir@ 31ns_appdir = @ns_appdir@
32ns_appbindir = @ns_appbindir@ 32ns_appbindir = @ns_appbindir@
33ns_appsrc = @ns_appsrc@ 33ns_appsrc = @ns_appsrc@
34ns_check_file = @ns_appdir@/@ns_check_file@
34 35
35${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc} 36${ns_check_file} ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
36 rm -rf ${ns_appdir} 37 rm -rf ${ns_appdir}
37 ${MKDIR_P} ${ns_appdir} 38 ${MKDIR_P} ${ns_appdir}
38 ( cd ${srcdir}/${ns_appsrc} ; tar cfh - . ) | \ 39 ( cd ${srcdir}/${ns_appsrc} ; tar cfh - . ) | \
@@ -42,7 +43,7 @@ ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
42 ( cd ${ns_appdir} ; umask 022; tar xf - ) 43 ( cd ${ns_appdir} ; umask 022; tar xf - )
43 touch ${ns_appdir} 44 touch ${ns_appdir}
44 45
45${ns_appbindir}/Emacs: ${ns_appdir} ../src/emacs${EXEEXT} 46${ns_appbindir}/Emacs: ${ns_appdir} ${ns_check_file} ../src/emacs${EXEEXT}
46 ${MKDIR_P} ${ns_appbindir} 47 ${MKDIR_P} ${ns_appbindir}
47 cp -f ../src/emacs${EXEEXT} ${ns_appbindir}/Emacs 48 cp -f ../src/emacs${EXEEXT} ${ns_appbindir}/Emacs
48 49