aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-05-16 16:38:13 -0700
committerGlenn Morris2010-05-16 16:38:13 -0700
commit9a436f0c8f6973b2056b7a14b95e01e50ab87d3c (patch)
treefe9e1c9cd7c23da644e437522cebbb8cdeb5553d
parentda53fab92286d98b5a474ce9a5000f7f7ddf8c1c (diff)
downloademacs-9a436f0c8f6973b2056b7a14b95e01e50ab87d3c.tar.gz
emacs-9a436f0c8f6973b2056b7a14b95e01e50ab87d3c.zip
* configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
* configure: Regenerate.
-rw-r--r--ChangeLog2
-rwxr-xr-xconfigure12
-rw-r--r--configure.in8
3 files changed, 12 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index adfdd63bc98..65a32fc5789 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
12010-05-16 Glenn Morris <rgm@gnu.org> 12010-05-16 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
4
3 * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value. 5 * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
4 * Makefile.in (install-arch-dep): Update for above change. 6 * Makefile.in (install-arch-dep): Update for above change.
5 7
diff --git a/configure b/configure
index 327ae22d2f0..6c6c97e56e1 100755
--- a/configure
+++ b/configure
@@ -9942,15 +9942,15 @@ TEMACS_LDFLAGS2="\${LDFLAGS}"
9942if test "${with_ns}" != no; then 9942if test "${with_ns}" != no; then
9943 if test "${opsys}" = darwin; then 9943 if test "${opsys}" = darwin; then
9944 NS_IMPL_COCOA=yes 9944 NS_IMPL_COCOA=yes
9945 ns_appdir=`pwd`/nextstep/Emacs.app 9945 ns_appdir=`pwd`/nextstep/Emacs.app/
9946 ns_appbindir=`pwd`/nextstep/Emacs.app/Contents/MacOS 9946 ns_appbindir=${ns_appdir}Contents/MacOS/
9947 ns_appresdir=`pwd`/nextstep/Emacs.app/Contents/Resources 9947 ns_appresdir=${ns_appdir}Contents/Resources
9948 ns_appsrc=${srcdir}/nextstep/Cocoa/Emacs.base 9948 ns_appsrc=${srcdir}/nextstep/Cocoa/Emacs.base
9949 elif test -f $GNUSTEP_CONFIG_FILE; then 9949 elif test -f $GNUSTEP_CONFIG_FILE; then
9950 NS_IMPL_GNUSTEP=yes 9950 NS_IMPL_GNUSTEP=yes
9951 ns_appdir=`pwd`/nextstep/Emacs.app 9951 ns_appdir=`pwd`/nextstep/Emacs.app/
9952 ns_appbindir=`pwd`/nextstep/Emacs.app 9952 ns_appbindir=${ns_appdir}
9953 ns_appresdir=`pwd`/nextstep/Emacs.app/Resources 9953 ns_appresdir=${ns_appdir}Resources
9954 ns_appsrc=${srcdir}/nextstep/GNUstep/Emacs.base 9954 ns_appsrc=${srcdir}/nextstep/GNUstep/Emacs.base
9955 GNUSTEP_MAKEFILES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_MAKEFILES)" 9955 GNUSTEP_MAKEFILES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_MAKEFILES)"
9956 GNUSTEP_SYSTEM_HEADERS="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_SYSTEM_HEADERS)" 9956 GNUSTEP_SYSTEM_HEADERS="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_SYSTEM_HEADERS)"
diff --git a/configure.in b/configure.in
index a3ce499e749..2f5abe3a5f9 100644
--- a/configure.in
+++ b/configure.in
@@ -1466,14 +1466,14 @@ if test "${with_ns}" != no; then
1466 if test "${opsys}" = darwin; then 1466 if test "${opsys}" = darwin; then
1467 NS_IMPL_COCOA=yes 1467 NS_IMPL_COCOA=yes
1468 ns_appdir=`pwd`/nextstep/Emacs.app/ 1468 ns_appdir=`pwd`/nextstep/Emacs.app/
1469 ns_appbindir=`pwd`/nextstep/Emacs.app/Contents/MacOS/ 1469 ns_appbindir=${ns_appdir}Contents/MacOS/
1470 ns_appresdir=`pwd`/nextstep/Emacs.app/Contents/Resources 1470 ns_appresdir=${ns_appdir}Contents/Resources
1471 ns_appsrc=${srcdir}/nextstep/Cocoa/Emacs.base 1471 ns_appsrc=${srcdir}/nextstep/Cocoa/Emacs.base
1472 elif test -f $GNUSTEP_CONFIG_FILE; then 1472 elif test -f $GNUSTEP_CONFIG_FILE; then
1473 NS_IMPL_GNUSTEP=yes 1473 NS_IMPL_GNUSTEP=yes
1474 ns_appdir=`pwd`/nextstep/Emacs.app/ 1474 ns_appdir=`pwd`/nextstep/Emacs.app/
1475 ns_appbindir=`pwd`/nextstep/Emacs.app/ 1475 ns_appbindir=${ns_appdir}
1476 ns_appresdir=`pwd`/nextstep/Emacs.app/Resources 1476 ns_appresdir=${ns_appdir}Resources
1477 ns_appsrc=${srcdir}/nextstep/GNUstep/Emacs.base 1477 ns_appsrc=${srcdir}/nextstep/GNUstep/Emacs.base
1478 dnl FIXME sourcing this 3 times in subshells seems inefficient. 1478 dnl FIXME sourcing this 3 times in subshells seems inefficient.
1479 GNUSTEP_MAKEFILES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_MAKEFILES)" 1479 GNUSTEP_MAKEFILES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_MAKEFILES)"