Changeset 3207 for trunk/make-dist
- Timestamp:
- 12/28/03 22:47:28 (5 years ago)
- Files:
-
- trunk/make-dist (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/make-dist
r55 r3207 151 151 if [ $update = yes ]; 152 152 then 153 if grep -s " GNU Emacs version${shortversion}" ./man/emacs.texi > /dev/null; then153 if grep -s "@set EMACSVER *${shortversion}" ./man/emacs.texi > /dev/null; then 154 154 true 155 155 else … … 232 232 233 233 ### Make sure configure is newer than configure.in. 234 if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then234 if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then 235 235 echo "\`./configure.in' is newer than \`./configure'" >&2 236 236 echo "Running autoconf" >&2 … … 267 267 fi 268 268 done 269 head -1 $files | grep '^;' | sed -e 's/;;; //' | sort > MANIFEST) 269 for file in $files 270 do sed -n 's/^;;; //p; q' $file 271 done | sort > MANIFEST) 270 272 271 273 echo "Creating staging directory: \`${tempparent}'" … … 288 290 ### README while the rest of the tar file is still unpacking. Whoopee. 289 291 echo "Making links to top-level files" 290 ln FTP INSTALL README BUGS move-if-change ${tempdir}292 ln AUTHORS FTP INSTALL README BUGS move-if-change ${tempdir} 291 293 ln ChangeLog Makefile.in configure configure.in aclocal.m4 ${tempdir} 292 294 ln config.bat make-dist update-subdirs vpath.sed ${tempdir} … … 383 385 fi 384 386 done ) 387 388 ### Don't distribute an empty calc directory, present due to CVS 389 ### misfeatures. 390 (cd ./${tempdir}/lisp 391 rm -rf calc 392 ) 385 393 386 394 echo "Making links to \`leim' and its subdirectories for the LEIM distribution"
