aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-05-15 15:13:17 -0400
committerGlenn Morris2012-05-15 15:13:17 -0400
commit4e7d487c440666d5178e78d66ef4c3c232c01a19 (patch)
treed5624028b2cbc73991354d2b16201ce5a1b49ceb
parentc41045e6f2b9e9aa5ab8c7c679a2ea04b130fca3 (diff)
downloademacs-4e7d487c440666d5178e78d66ef4c3c232c01a19.tar.gz
emacs-4e7d487c440666d5178e78d66ef4c3c232c01a19.zip
* Makefile.in (install-arch-dep): Replace last user of MV_DIRS.
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in6
2 files changed, 4 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c921934881..9bf19a1ee57 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,6 @@
12012-05-15 Glenn Morris <rgm@gnu.org> 12012-05-15 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (install-arch-dep): Replace use of MV_DIRS with info, 3 * Makefile.in (install-arch-dep): Replace use of MV_DIRS.
4 and with libexec.
5 4
6 * Makefile.in (install-arch-dep): Do not hard-code version number. 5 * Makefile.in (install-arch-dep): Do not hard-code version number.
7 6
diff --git a/Makefile.in b/Makefile.in
index 0b1fb77e6db..b0ea80e8b9f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -451,8 +451,6 @@ $(srcdir)/src/stamp-h.in: $(AUTOCONF_INPUTS)
451install: all install-arch-indep install-arch-dep install-leim blessmail 451install: all install-arch-indep install-arch-dep install-leim blessmail
452 @true 452 @true
453 453
454MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
455
456### Install the executables that were compiled specifically for this machine. 454### Install the executables that were compiled specifically for this machine.
457### It would be nice to do something for a parallel make 455### It would be nice to do something for a parallel make
458### to ensure that install-arch-indep finishes before this starts. 456### to ensure that install-arch-indep finishes before this starts.
@@ -470,7 +468,9 @@ install-arch-dep: mkdir
470 -ln $(DESTDIR)${bindir}/$(EMACSFULL) $(DESTDIR)${bindir}/$(EMACS) 468 -ln $(DESTDIR)${bindir}/$(EMACSFULL) $(DESTDIR)${bindir}/$(EMACS)
471 if test "${ns_appresdir}" != ""; then \ 469 if test "${ns_appresdir}" != ""; then \
472 ( cd ${ns_appresdir} ; \ 470 ( cd ${ns_appresdir} ; \
473 if test -d share/emacs ; then dir=share/emacs/*/*; $(MV_DIRS); fi;\ 471 if test -d share/emacs ; then \
472 for dir in share/emacs/${version}/*; do \
473 rm -fr `basename "$$dir"`; mv "$$dir" . ; done; fi ; \
474 if test -d share/info ; then rm -fr info; mv share/info . ; fi ; \ 474 if test -d share/info ; then rm -fr info; mv share/info . ; fi ; \
475 rm -fr share ) ; \ 475 rm -fr share ) ; \
476 ( if cd ${ns_appbindir}/libexec ; then \ 476 ( if cd ${ns_appbindir}/libexec ; then \