diff options
| author | Paul Eggert | 2011-01-08 13:02:38 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-01-08 13:02:38 -0800 |
| commit | 9a514d4a6c27b837fc2cd6d02c7cd60f08a621a4 (patch) | |
| tree | 1eee202635acdcbf6871101a2af8f67cd4683b1c /make-dist | |
| parent | 278f68456b8c25fff6d2274476cdc8ee3609f68b (diff) | |
| download | emacs-9a514d4a6c27b837fc2cd6d02c7cd60f08a621a4.tar.gz emacs-9a514d4a6c27b837fc2cd6d02c7cd60f08a621a4.zip | |
Automate syncing from gnulib.
Diffstat (limited to 'make-dist')
| -rwxr-xr-x | make-dist | 14 |
1 files changed, 12 insertions, 2 deletions
| @@ -286,12 +286,14 @@ ln INSTALL README BUGS move-if-change ${tempdir} | |||
| 286 | ln ChangeLog Makefile.in configure configure.in ${tempdir} | 286 | ln ChangeLog Makefile.in configure configure.in ${tempdir} |
| 287 | ln config.bat make-dist update-subdirs vpath.sed .dir-locals.el ${tempdir} | 287 | ln config.bat make-dist update-subdirs vpath.sed .dir-locals.el ${tempdir} |
| 288 | ln mkinstalldirs config.sub config.guess install-sh ${tempdir} | 288 | ln mkinstalldirs config.sub config.guess install-sh ${tempdir} |
| 289 | ln aclocal.m4 ${tempdir} | ||
| 290 | ln compile depcomp missing ${tempdir} | ||
| 289 | 291 | ||
| 290 | echo "Creating subdirectories" | 292 | echo "Creating subdirectories" |
| 291 | for subdir in site-lisp \ | 293 | for subdir in site-lisp \ |
| 292 | leim leim/CXTERM-DIC leim/MISC-DIC \ | 294 | leim leim/CXTERM-DIC leim/MISC-DIC \ |
| 293 | leim/SKK-DIC leim/ja-dic leim/quail \ | 295 | leim/SKK-DIC leim/ja-dic leim/quail \ |
| 294 | src src/m src/s src/bitmaps lib-src oldXMenu lwlib \ | 296 | src src/m src/s src/bitmaps lib lib-src oldXMenu lwlib \ |
| 295 | nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ | 297 | nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ |
| 296 | `find etc lisp -type d` \ | 298 | `find etc lisp -type d` \ |
| 297 | doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ | 299 | doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ |
| @@ -368,6 +370,14 @@ echo "Making links to \`src/s'" | |||
| 368 | (cd src/s | 370 | (cd src/s |
| 369 | ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s) | 371 | ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s) |
| 370 | 372 | ||
| 373 | echo "Making links to \`lib'" | ||
| 374 | (build_aux_h=`(ls *.h)` | ||
| 375 | cd lib | ||
| 376 | ln [a-zA-Z]*.[ch] ../${tempdir}/lib | ||
| 377 | ln gnulib.mk Makefile.am Makefile.in ../${tempdir}/lib | ||
| 378 | cd ../${tempdir}/lib | ||
| 379 | rm -f `(echo "$build_aux_h"; ls *.in.h) | sed '/[*]/d; s/.in.h$/.h/'`) | ||
| 380 | |||
| 371 | echo "Making links to \`lib-src'" | 381 | echo "Making links to \`lib-src'" |
| 372 | (cd lib-src | 382 | (cd lib-src |
| 373 | ln [a-zA-Z]*.[ch] ../${tempdir}/lib-src | 383 | ln [a-zA-Z]*.[ch] ../${tempdir}/lib-src |
| @@ -477,7 +487,7 @@ echo "Making links to \`doc/man'" | |||
| 477 | ### It would be nice if they could all be symlinks to top-level copy, but | 487 | ### It would be nice if they could all be symlinks to top-level copy, but |
| 478 | ### you're not supposed to have any symlinks in distribution tar files. | 488 | ### you're not supposed to have any symlinks in distribution tar files. |
| 479 | echo "Making sure copying notices are all copies of \`COPYING'" | 489 | echo "Making sure copying notices are all copies of \`COPYING'" |
| 480 | for subdir in . etc info leim lib-src lisp lwlib msdos nt src; do | 490 | for subdir in . etc info leim lib lib-src lisp lwlib msdos nt src; do |
| 481 | rm -f ${tempdir}/${subdir}/COPYING | 491 | rm -f ${tempdir}/${subdir}/COPYING |
| 482 | cp COPYING ${tempdir}/${subdir} | 492 | cp COPYING ${tempdir}/${subdir} |
| 483 | done | 493 | done |