aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2013-09-02 09:01:53 +0200
committerJan Djärv2013-09-02 09:01:53 +0200
commitde3d0b572de7b7c03ba3a2c4153d89e50f411da9 (patch)
treed00c1e501eedaba5d02211f3933279e26c6fc34c
parent1fccc5306363a88fc3f663e2a149d0251612d3e9 (diff)
downloademacs-de3d0b572de7b7c03ba3a2c4153d89e50f411da9.tar.gz
emacs-de3d0b572de7b7c03ba3a2c4153d89e50f411da9.zip
Fix copying of nextstep/Emacs.app for make -j install
* configure.ac: Add ns_check_file. * nextstep/Makefile.in (${ns_check_file}): Add so Emacs.app gets properly updated when doing parallel make install.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac3
-rw-r--r--nextstep/ChangeLog5
-rw-r--r--nextstep/Makefile.in5
4 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 14bac067213..ba6c22c13b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12013-09-02 Jan Djärv <jan.h.d@swipnet.se>
2
3 * configure.ac: Add ns_check_file.
4
12013-08-31 Glenn Morris <rgm@gnu.org> 52013-08-31 Glenn Morris <rgm@gnu.org>
2 6
3 * configure.ac (--with-sound): Rename ossaudio to bsd-ossaudio, 7 * configure.ac (--with-sound): Rename ossaudio to bsd-ossaudio,
diff --git a/configure.ac b/configure.ac
index 6cafa3eda57..2d12a8f8297 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4897,10 +4897,13 @@ if test "$HAVE_NS" = "yes"; then
4897 if test "$NS_IMPL_GNUSTEP" = yes; then 4897 if test "$NS_IMPL_GNUSTEP" = yes; then
4898 AC_CONFIG_FILES([nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist:nextstep/templates/Info-gnustep.plist.in \ 4898 AC_CONFIG_FILES([nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist:nextstep/templates/Info-gnustep.plist.in \
4899 nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop:nextstep/templates/Emacs.desktop.in]) 4899 nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop:nextstep/templates/Emacs.desktop.in])
4900 ns_check_file=Resources/Info-gnustep.plist
4900 else 4901 else
4901 AC_CONFIG_FILES([nextstep/Cocoa/Emacs.base/Contents/Info.plist:nextstep/templates/Info.plist.in \ 4902 AC_CONFIG_FILES([nextstep/Cocoa/Emacs.base/Contents/Info.plist:nextstep/templates/Info.plist.in \
4902 nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings:nextstep/templates/InfoPlist.strings.in]) 4903 nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings:nextstep/templates/InfoPlist.strings.in])
4904 ns_check_file=Contents/Info.plist
4903 fi 4905 fi
4906 AC_SUBST(ns_check_file)
4904fi 4907fi
4905 4908
4906dnl Obviously there is duplication here wrt $SUBDIR_MAKEFILES. 4909dnl Obviously there is duplication here wrt $SUBDIR_MAKEFILES.
diff --git a/nextstep/ChangeLog b/nextstep/ChangeLog
index 7e5e7b520dd..42086ec1007 100644
--- a/nextstep/ChangeLog
+++ b/nextstep/ChangeLog
@@ -1,3 +1,8 @@
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
12013-08-28 Paul Eggert <eggert@cs.ucla.edu> 62013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh, 8 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in
index 8e768f70043..3d80ddb7ad2 100644
--- a/nextstep/Makefile.in
+++ b/nextstep/Makefile.in
@@ -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