aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorRichard M. Stallman1998-06-07 23:30:27 +0000
committerRichard M. Stallman1998-06-07 23:30:27 +0000
commit73494596154e5e2429ec1a1d76ee3c258cf89f96 (patch)
tree73154b4b4be6cd31ba0682d3ab7882bbf95e370b /make-dist
parent5abdc91582d5a2965ea1de4988f32cbedd5f2edb (diff)
downloademacs-73494596154e5e2429ec1a1d76ee3c258cf89f96.tar.gz
emacs-73494596154e5e2429ec1a1d76ee3c258cf89f96.zip
(MANIFEST): Include most subdirs, but exclude subdirs.el
and default.el. Sort the results.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist11
1 files changed, 10 insertions, 1 deletions
diff --git a/make-dist b/make-dist
index 8182f70106b..e9390413bf6 100755
--- a/make-dist
+++ b/make-dist
@@ -228,7 +228,16 @@ fi
228 228
229echo "Making lisp/MANIFEST" 229echo "Making lisp/MANIFEST"
230 230
231(cd lisp; head -1 [!=]*.el | grep '^;' | sed -e 's/;;; //' > MANIFEST) 231(cd lisp;
232 files=`echo [!=]*.el | sed -e 's/ subdirs.el / /' -e 's/ default.el / /'`
233 for dir in [!=]*; do
234 if [ -d $dir ] && [ $dir != term ] && [ $dir != RCS ]; then
235 echo $dir
236 thisdir=`echo $dir/[!=]*.el | sed -e 's/ subdirs.el / /'`
237 files="$files $thisdir"
238 fi
239 done
240 head -1 $files | grep '^;' | sed -e 's/;;; //' | sort > MANIFEST)
232 241
233echo "Creating staging directory: \`${tempparent}'" 242echo "Creating staging directory: \`${tempparent}'"
234 243