aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-12-10 18:30:29 -0800
committerGlenn Morris2010-12-10 18:30:29 -0800
commit838db88908403c3be26bd9b50b8d0dc7290dfd02 (patch)
tree15b8c496b8925a525c95bcf2f3d934c90a5bc5f0
parent3b84b005023f866afe3ba2b1e4178f39363aacc4 (diff)
downloademacs-838db88908403c3be26bd9b50b8d0dc7290dfd02.tar.gz
emacs-838db88908403c3be26bd9b50b8d0dc7290dfd02.zip
* make-dist: Exclude etc/*.pyc.
-rw-r--r--ChangeLog4
-rwxr-xr-xmake-dist2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index aec929ce90d..0bf18e23867 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12010-12-11 Glenn Morris <rgm@gnu.org>
2
3 * make-dist: Exclude etc/*.pyc.
4
12010-12-10 Andreas Schwab <schwab@linux-m68k.org> 52010-12-10 Andreas Schwab <schwab@linux-m68k.org>
2 6
3 * configure.in: Don't double machfile in final message. 7 * configure.in: Don't double machfile in final message.
diff --git a/make-dist b/make-dist
index 7f7b01112ae..3d610c1eee6 100755
--- a/make-dist
+++ b/make-dist
@@ -441,7 +441,7 @@ echo "Making links to \`lwlib'"
441echo "Making links to \`etc' and its subdirectories" 441echo "Making links to \`etc' and its subdirectories"
442for f in `find etc -type f`; do 442for f in `find etc -type f`; do
443 case $f in 443 case $f in
444 etc/DOC*) continue ;; 444 etc/DOC*|etc/*.pyc) continue ;;
445 esac 445 esac
446 ln $f $tempdir/$f 446 ln $f $tempdir/$f
447done 447done