* make-dist: Exclude etc/*.pyc.
authorGlenn Morris <rgm@gnu.org>
Sat, 11 Dec 2010 02:30:29 +0000 (18:30 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 11 Dec 2010 02:30:29 +0000 (18:30 -0800)
ChangeLog
make-dist

index aec929c..0bf18e2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-12-11  Glenn Morris  <rgm@gnu.org>
+
+       * make-dist: Exclude etc/*.pyc.
+
 2010-12-10  Andreas Schwab  <schwab@linux-m68k.org>
 
        * configure.in: Don't double machfile in final message.
index 7f7b011..3d610c1 100755 (executable)
--- a/make-dist
+++ b/make-dist
@@ -441,7 +441,7 @@ echo "Making links to \`lwlib'"
 echo "Making links to \`etc' and its subdirectories"
 for f in `find etc -type f`; do
   case $f in
-    etc/DOC*) continue ;;
+    etc/DOC*|etc/*.pyc) continue ;;
   esac
   ln $f $tempdir/$f
 done