aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorGlenn Morris2010-12-10 18:30:29 -0800
committerGlenn Morris2010-12-10 18:30:29 -0800
commit838db88908403c3be26bd9b50b8d0dc7290dfd02 (patch)
tree15b8c496b8925a525c95bcf2f3d934c90a5bc5f0 /make-dist
parent3b84b005023f866afe3ba2b1e4178f39363aacc4 (diff)
downloademacs-838db88908403c3be26bd9b50b8d0dc7290dfd02.tar.gz
emacs-838db88908403c3be26bd9b50b8d0dc7290dfd02.zip
* make-dist: Exclude etc/*.pyc.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist2
1 files changed, 1 insertions, 1 deletions
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