emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112350: * build-aux/update-subdirs:


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112350: * build-aux/update-subdirs: Don't leave subdirs.el~ behind.
Date: Sun, 21 Apr 2013 22:01:33 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112350
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sun 2013-04-21 22:01:33 -0700
message:
  * build-aux/update-subdirs: Don't leave subdirs.el~ behind.
  
  It messes up 'make distclean', and contains no useful information
  because it's a copy of subdirs.el.
modified:
  ChangeLog
  build-aux/update-subdirs
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-04-18 17:12:21 +0000
+++ b/ChangeLog 2013-04-22 05:01:33 +0000
@@ -1,3 +1,9 @@
+2013-04-22  Paul Eggert  <address@hidden>
+
+       * build-aux/update-subdirs: Don't leave subdirs.el~ behind.
+       It messes up 'make distclean', and contains no useful information
+       because it's a copy of subdirs.el.
+
 2013-04-18  John Marino  <address@hidden>  (tiny change)
 
        * configure.ac: Add DragonFly BSD, mostly same as FreeBSD.  (Bug#14068)

=== modified file 'build-aux/update-subdirs'
--- a/build-aux/update-subdirs  2013-01-01 09:11:05 +0000
+++ b/build-aux/update-subdirs  2013-04-22 05:01:33 +0000
@@ -49,8 +49,8 @@
 ;; no-byte-compile: t
 ;; End:" > subdirs.el~
   if cmp "subdirs.el" "subdirs.el~" >/dev/null 2>&1; then
-    :; # echo "subdirs.el unchanged";
+    rm subdirs.el~
   else
-  mv subdirs.el~ subdirs.el
+    mv subdirs.el~ subdirs.el
   fi
 fi


reply via email to

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