aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-05-16 23:07:26 -0700
committerGlenn Morris2012-05-16 23:07:26 -0700
commit40c117e7adf2bc35afef024d476e657a30ea35dd (patch)
tree8e1304e1ddcda4563cd131204a37785e39958ef1
parentb42c720d56003e200d059f90f0b5bc1dc79c2318 (diff)
downloademacs-40c117e7adf2bc35afef024d476e657a30ea35dd.tar.gz
emacs-40c117e7adf2bc35afef024d476e657a30ea35dd.zip
Minor optimization for install of self-contained NS info files
* configure.in (etcdir): For a self-contained ns build, set it to the appropriate values. * Makefile.in (install-arch-dep): No need to move info/ any more.
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in1
-rw-r--r--configure.in3
3 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e95a064218e..013734a8651 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
12012-05-17 Glenn Morris <rgm@gnu.org> 12012-05-17 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.in (docdir, etcdir, lispdir): 3 * configure.in (docdir, etcdir, infodir, lispdir):
4 For a self-contained ns build, set these to the appropriate values. 4 For a self-contained ns build, set these to the appropriate values.
5 * Makefile.in (install-arch-dep): No need to move info/ any more.
5 6
6 * configure.in (ns_self_contained): New output variable. 7 * configure.in (ns_self_contained): New output variable.
7 * Makefile.in (ns_self_contained): New, set by configure. 8 * Makefile.in (ns_self_contained): New, set by configure.
diff --git a/Makefile.in b/Makefile.in
index 53e73370b74..2f1a2345552 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -479,7 +479,6 @@ install-arch-dep: mkdir
479 rm -fr `basename "$$dir"`; mv "$$dir" . ; \ 479 rm -fr `basename "$$dir"`; mv "$$dir" . ; \
480 done ; \ 480 done ; \
481 fi ; \ 481 fi ; \
482 if test -d share/info ; then rm -fr info; mv share/info . ; fi ; \
483 rm -fr share ) ; \ 482 rm -fr share ) ; \
484 fi 483 fi
485 484
diff --git a/configure.in b/configure.in
index 7cc41aa5897..0844cc2ecb6 100644
--- a/configure.in
+++ b/configure.in
@@ -1595,6 +1595,9 @@ if test "${HAVE_NS}" = yes; then
1595 archlibdir="\${ns_appbindir}/libexec" 1595 archlibdir="\${ns_appbindir}/libexec"
1596 docdir="\${ns_appresdir}/etc" 1596 docdir="\${ns_appresdir}/etc"
1597 etcdir="\${ns_appresdir}/etc" 1597 etcdir="\${ns_appresdir}/etc"
1598 dnl FIXME maybe set datarootdir instead.
1599 dnl That would also get applications, icons, man.
1600 infodir="\${ns_appresdir}/info"
1598 lispdir="\${ns_appresdir}/lisp" 1601 lispdir="\${ns_appresdir}/lisp"
1599 LEIM_INSTALLDIR="\${ns_appresdir}/leim" 1602 LEIM_INSTALLDIR="\${ns_appresdir}/leim"
1600 fi 1603 fi