# HG changeset patch # User Richard M. Stallman # Date 897262227 0 # Node ID d929ae6f35d3ca9728c36edb71fee942c731785c # Parent 2d0bece94ee7a41838c8d0712bb595ab531ec9cd (MANIFEST): Include most subdirs, but exclude subdirs.el and default.el. Sort the results. diff -r 2d0bece94ee7 -r d929ae6f35d3 make-dist --- a/make-dist Sun Jun 07 23:07:55 1998 +0000 +++ b/make-dist Sun Jun 07 23:30:27 1998 +0000 @@ -228,7 +228,16 @@ echo "Making lisp/MANIFEST" -(cd lisp; head -1 [!=]*.el | grep '^;' | sed -e 's/;;; //' > MANIFEST) +(cd lisp; + files=`echo [!=]*.el | sed -e 's/ subdirs.el / /' -e 's/ default.el / /'` + for dir in [!=]*; do + if [ -d $dir ] && [ $dir != term ] && [ $dir != RCS ]; then + echo $dir + thisdir=`echo $dir/[!=]*.el | sed -e 's/ subdirs.el / /'` + files="$files $thisdir" + fi + done + head -1 $files | grep '^;' | sed -e 's/;;; //' | sort > MANIFEST) echo "Creating staging directory: \`${tempparent}'"