emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r108264: * Makefile.in (write_subdir)


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108264: * Makefile.in (write_subdir): Move definition before use.
Date: Thu, 17 May 2012 14:38:20 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 108264
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2012-05-17 14:38:20 -0400
message:
  * Makefile.in (write_subdir): Move definition before use.
modified:
  Makefile.in
=== modified file 'Makefile.in'
--- a/Makefile.in       2012-05-17 18:28:24 +0000
+++ b/Makefile.in       2012-05-17 18:38:20 +0000
@@ -456,6 +456,16 @@
 install: all install-arch-indep install-arch-dep install-leim blessmail
        @true
 
+## Ensure that $subdir contains a subdirs.el file.
+write_subdir=if [ -f $${subdir}/subdirs.el ]; \
+       then true; \
+       else \
+         (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
+          echo "    (normal-top-level-add-subdirs-to-load-path))") \
+           > $${subdir}/subdirs.el; \
+       fi; \
+       chmod a+r $${subdir}/subdirs.el
+
 ### 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.
@@ -517,16 +527,6 @@
 ## Note that the Makefiles in the etc directory are potentially useful
 ## in an installed Emacs, so should not be excluded.
 
-## Ensure that $subdir contains a subdirs.el file.
-write_subdir=if [ -f $${subdir}/subdirs.el ]; \
-       then true; \
-       else \
-         (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
-          echo "    (normal-top-level-add-subdirs-to-load-path))") \
-           > $${subdir}/subdirs.el; \
-       fi; \
-       chmod a+r $${subdir}/subdirs.el
-
 install-arch-indep: mkdir info install-etc
        -set ${COPYDESTS} ; \
        unset CDPATH; \


reply via email to

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