diff options
| -rwxr-xr-x | make-dist | 11 |
1 files changed, 10 insertions, 1 deletions
| @@ -228,7 +228,16 @@ fi | |||
| 228 | 228 | ||
| 229 | echo "Making lisp/MANIFEST" | 229 | echo "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 | ||
| 233 | echo "Creating staging directory: \`${tempparent}'" | 242 | echo "Creating staging directory: \`${tempparent}'" |
| 234 | 243 | ||