Atomically update subdirs.el.

This commit is contained in:
Andreas Schwab 2007-11-17 12:02:32 +00:00
parent 4e60b1b66c
commit 8d6069a493
2 changed files with 11 additions and 8 deletions

View file

@ -1,3 +1,7 @@
2007-11-17 Andreas Schwab <schwab@suse.de>
* update-subdirs: Atomically update subdirs.el.
2007-11-17 Glenn Morris <rgm@gnu.org>
* Makefile.in (check-declare): New target.

View file

@ -37,17 +37,16 @@ done
if [ "x$subdirs" = x ]; then
rm -f subdirs.el
else
echo ";; -*- no-byte-compile: t -*-" > subdirs.el
echo ";; In load-path, after this directory should come
;; certain of its subdirectories. Here we specify them." >> subdirs.el
echo "(normal-top-level-add-to-load-path '($subdirs))
rm -f subdirs.el~
echo ";; -*- no-byte-compile: t -*-
;; In load-path, after this directory should come
;; certain of its subdirectories. Here we specify them.
(normal-top-level-add-to-load-path '($subdirs))
;; Local" "Variables:
;; version-control: never
;; no-byte-compile: t
;; End:" >> subdirs.el
;; End:" > subdirs.el~
mv subdirs.el~ subdirs.el
fi
# arch-tag: 56ebcf1b-5c30-4934-b0b4-72d374064704