emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108280: Tweak dependencies in top-le


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108280: Tweak dependencies in top-level install rules
Date: Fri, 18 May 2012 00:00:09 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 108280
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2012-05-18 00:00:09 -0700
message:
  Tweak dependencies in top-level install rules
  
  * Makefile.in (install-arch-dep): Depend on install-arch-indep.
  (install-arch-indep): Depend on install-leim.
  (install): Remove explicit install-leim dependence.
modified:
  ChangeLog
  Makefile.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-05-18 06:54:28 +0000
+++ b/ChangeLog 2012-05-18 07:00:09 +0000
@@ -1,5 +1,9 @@
 2012-05-18  Glenn Morris  <address@hidden>
 
+       * Makefile.in (install-arch-dep): Depend on install-arch-indep.
+       (install-arch-indep): Depend on install-leim.
+       (install): Remove explicit install-leim dependence.
+
        * Makefile.in (install-arch-indep):
        Move last element of mkdir rule here.
        (mkdir): Remove rule.

=== modified file 'Makefile.in'
--- a/Makefile.in       2012-05-18 06:54:28 +0000
+++ b/Makefile.in       2012-05-18 07:00:09 +0000
@@ -446,9 +446,7 @@
 
 .PHONY: install
 
-### We do install-arch-indep first because
-### the executable needs the Lisp files and DOC file to work properly.
-install: all install-arch-indep install-arch-dep install-leim blessmail
+install: all install-arch-indep install-arch-dep blessmail
        @true
 
 ## Ensure that $subdir contains a subdirs.el file.
@@ -467,11 +465,9 @@
        fi
 
 ### Install the executables that were compiled specifically for this machine.
-### It would be nice to do something for a parallel make
-### to ensure that install-arch-indep finishes before this starts.
-### (TODO Why would it be nice?  Why not just make this depend on
-### install-arch-indep then?)
-install-arch-dep:
+### We do install-arch-indep first because the executable needs the
+### Lisp files and DOC file to work properly.
+install-arch-dep: install-arch-indep
        umask 022; ${MKDIR_P} $(DESTDIR)${bindir}
        (cd lib-src; \
          $(MAKE) install $(MFLAGS) prefix=${prefix} \
@@ -540,7 +536,7 @@
 ## Is it really Emacs's job to create those directories?
 ## Should we also be ensuring they contain subdirs.el files?
 ## It would be easy to do, just use write_subdir.
-install-arch-indep: info install-etc
+install-arch-indep: info install-etc install-leim
        umask 022 ; \
          $(MKDIR_P) $(DESTDIR)`echo ${locallisppath} | sed 's,:, $(DESTDIR),g'`
        -set ${COPYDESTS} ; \


reply via email to

[Prev in Thread] Current Thread [Next in Thread]