aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorGlenn Morris2013-12-12 00:54:21 -0800
committerGlenn Morris2013-12-12 00:54:21 -0800
commit62bd73fa7a8c50504bc6f916b86603ea654fc472 (patch)
treec0f269198491a68fe4fbedcb9a95ddf11c4ac600 /make-dist
parent397a32c12ad097314c0948818d5c54b43d9f3d54 (diff)
downloademacs-62bd73fa7a8c50504bc6f916b86603ea654fc472.tar.gz
emacs-62bd73fa7a8c50504bc6f916b86603ea654fc472.zip
Stop keeping info/dir in the repository.
* build-aux/dir_top: Move here from admin/. * build-aux/make-info-dir: New script. * Makefile.in (bootstrap-clean): Delete info/. (info-dir, ${srcdir}/info/dir): New rules. (info): Also make info-dir. (check-info): Rename from check-info-dir. Instead of info/dir entries, check @dircategory in info/*.info. * make-dist: Use `info' rule rather than `info-real'. No more info/COPYING (not even the right license for info/ files). * info/: Remove from repository. * admin/update_autogen (info_dir): Use dir_top from build-aux/ rather than admin/. * .bzrignore: Ignore info/ altogether. * doc/emacs/Makefile.in: Comment.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist4
1 files changed, 2 insertions, 2 deletions
diff --git a/make-dist b/make-dist
index fc87ea7ec63..20473e0dbb8 100755
--- a/make-dist
+++ b/make-dist
@@ -251,7 +251,7 @@ if [ $update = yes ]; then
251 echo timestamp > src/stamp-h.in 251 echo timestamp > src/stamp-h.in
252 252
253 echo "Updating Info files" 253 echo "Updating Info files"
254 make info-real 254 make info
255 255
256 echo "Updating finder, custom and autoload data" 256 echo "Updating finder, custom and autoload data"
257 (cd lisp && make updates EMACS="$EMACS") 257 (cd lisp && make updates EMACS="$EMACS")
@@ -505,7 +505,7 @@ echo "Making links to \`doc/man'"
505### It would be nice if they could all be symlinks to top-level copy, but 505### It would be nice if they could all be symlinks to top-level copy, but
506### you're not supposed to have any symlinks in distribution tar files. 506### you're not supposed to have any symlinks in distribution tar files.
507echo "Making sure copying notices are all copies of \`COPYING'" 507echo "Making sure copying notices are all copies of \`COPYING'"
508for subdir in . etc info leim lib lib-src lisp lwlib msdos nt src; do 508for subdir in . etc leim lib lib-src lisp lwlib msdos nt src; do
509 rm -f ${tempdir}/${subdir}/COPYING 509 rm -f ${tempdir}/${subdir}/COPYING
510 cp COPYING ${tempdir}/${subdir} 510 cp COPYING ${tempdir}/${subdir}
511done 511done