diff options
| author | Glenn Morris | 2012-05-15 15:13:17 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-05-15 15:13:17 -0400 |
| commit | 4e7d487c440666d5178e78d66ef4c3c232c01a19 (patch) | |
| tree | d5624028b2cbc73991354d2b16201ce5a1b49ceb | |
| parent | c41045e6f2b9e9aa5ab8c7c679a2ea04b130fca3 (diff) | |
| download | emacs-4e7d487c440666d5178e78d66ef4c3c232c01a19.tar.gz emacs-4e7d487c440666d5178e78d66ef4c3c232c01a19.zip | |
* Makefile.in (install-arch-dep): Replace last user of MV_DIRS.
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Makefile.in | 6 |
2 files changed, 4 insertions, 5 deletions
| @@ -1,7 +1,6 @@ | |||
| 1 | 2012-05-15 Glenn Morris <rgm@gnu.org> | 1 | 2012-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) | |||
| 451 | install: all install-arch-indep install-arch-dep install-leim blessmail | 451 | install: all install-arch-indep install-arch-dep install-leim blessmail |
| 452 | @true | 452 | @true |
| 453 | 453 | ||
| 454 | MV_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 \ |