diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-04-11 19:41:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-04-11 19:41:28 +0000 |
commit | 32948b5eb3135be18571b56a5aa7fb68dd77b198 (patch) | |
tree | 61d7726422faa2c5c0a62573ede97733e3c7a24c /make-dist | |
parent | 058ae5ee58756b592dc1074343b5a07de4b66f67 (diff) | |
download | emacs-32948b5eb3135be18571b56a5aa7fb68dd77b198.tar.gz |
Use Make to update finder-inf.el and autoloads.
Also update cus-load.el.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/make-dist b/make-dist index 37e1ac7702c..d219fb58ce5 100755 --- a/make-dist +++ b/make-dist @@ -172,7 +172,7 @@ then echo "Updating finder-inf.el" - (cd lisp; $EMACS -batch -l finder -f finder-compile-keywords-make-dist) + (cd lisp; make finder-inf.el)) echo "Recompiling Lisp files" @@ -180,7 +180,11 @@ then echo "Updating autoloads" - $EMACS -batch -f batch-update-autoloads lisp + (cd lisp; make autoloads) + + echo "Updating cus-load.el" + + (cd lisp; make cus-load.el) fi echo "Making lisp/MANIFEST" |