Don't touch subdirs.el if it is unchanged.

This commit is contained in:
Stefan Monnier 2008-05-28 17:39:56 +00:00
parent 5e84e8f9ac
commit 792414668f
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
* update-subdirs: Don't touch subdirs.el if it is unchanged.
2008-05-14 Kenichi Handa <handa@m17n.org>
* configure: Regenerate.

View file

@ -45,7 +45,11 @@ else
;; version-control: never
;; no-byte-compile: t
;; End:" > subdirs.el~
if cmp "subdirs.el" "subdirs.el~" >/dev/null 2>&1; then
:; # echo "subdirs.el unchanged";
else
mv subdirs.el~ subdirs.el
fi
fi
# arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704