]> git.eshelyaron.com Git - emacs.git/commitdiff
(MANIFEST): Include most subdirs, but exclude subdirs.el
authorRichard M. Stallman <rms@gnu.org>
Sun, 7 Jun 1998 23:30:27 +0000 (23:30 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 7 Jun 1998 23:30:27 +0000 (23:30 +0000)
and default.el.  Sort the results.

make-dist

index 8182f70106b7a946e2ef9af718bb572ed5c8c388..e9390413bf626a255bbfb9b109f7ced97c615ac0 100755 (executable)
--- a/make-dist
+++ b/make-dist
@@ -228,7 +228,16 @@ fi
 
 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}'"