aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2013-04-21 22:08:36 -0700
committerPaul Eggert2013-04-21 22:08:36 -0700
commit1e8589d3d40eaf44c352e2989c2244d94de88405 (patch)
treedefe47ce8091f679e392f5165598a0f91b6e0275
parentc6cb2f53ac46155dbe7fc87681e3bfbd3dc9138b (diff)
downloademacs-1e8589d3d40eaf44c352e2989c2244d94de88405.tar.gz
emacs-1e8589d3d40eaf44c352e2989c2244d94de88405.zip
* make-dist: Do not distribute admin/unidata/Makefile.
It is generated by 'configure'.
-rw-r--r--ChangeLog3
-rwxr-xr-xmake-dist3
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ad354100bc7..5f74726a743 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
12013-04-22 Paul Eggert <eggert@cs.ucla.edu> 12013-04-22 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * make-dist: Do not distribute admin/unidata/Makefile.
4 It is generated by 'configure'.
5
3 * build-aux/update-subdirs: Don't leave subdirs.el~ behind. 6 * build-aux/update-subdirs: Don't leave subdirs.el~ behind.
4 It messes up 'make distclean', and contains no useful information 7 It messes up 'make distclean', and contains no useful information
5 because it's a copy of subdirs.el. 8 because it's a copy of subdirs.el.
diff --git a/make-dist b/make-dist
index 283defe8a7d..e1e62c895c7 100755
--- a/make-dist
+++ b/make-dist
@@ -439,6 +439,9 @@ echo "Making links to \`lwlib'"
439 439
440echo "Making links to \`admin' and its subdirectories" 440echo "Making links to \`admin' and its subdirectories"
441for f in `find admin -type f`; do 441for f in `find admin -type f`; do
442 case $f in
443 admin/unidata/Makefile) continue ;;
444 esac
442 ln $f $tempdir/$f 445 ln $f $tempdir/$f
443done 446done
444 447