diff options
| author | Glenn Morris | 2013-11-05 00:13:09 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-11-05 00:13:09 -0800 |
| commit | da6a8debb270a2e602f3b789ec3e27e815041164 (patch) | |
| tree | 5eadbc36e936201f58bbaa8e907838ce7b45fc44 | |
| parent | 21c84598d942acaf99fee5985dd3d4b771322e7b (diff) | |
| download | emacs-da6a8debb270a2e602f3b789ec3e27e815041164.tar.gz emacs-da6a8debb270a2e602f3b789ec3e27e815041164.zip | |
* make-dist: Don't distribute old, unsupported w32 build method.
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rwxr-xr-x | make-dist | 26 |
2 files changed, 14 insertions, 14 deletions
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-11-05 Glenn Morris <rgm@gnu.org> | 1 | 2013-11-05 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * make-dist: Don't distribute old, unsupported w32 build method. | ||
| 4 | |||
| 3 | * autogen: Remove directory. Move update_autogen to admin/. | 5 | * autogen: Remove directory. Move update_autogen to admin/. |
| 4 | * autogen.sh: Remove reference to copy_autogen. | 6 | * autogen.sh: Remove reference to copy_autogen. |
| 5 | * GNUmakefile (configure): | 7 | * GNUmakefile (configure): |
| @@ -326,7 +326,7 @@ files=`find lisp \( -name '*.el' -o -name '*.elc' -o -name 'ChangeLog*' \ | |||
| 326 | -o -name 'README' \)` | 326 | -o -name 'README' \)` |
| 327 | 327 | ||
| 328 | ### Don't distribute site-init.el, site-load.el, or default.el. | 328 | ### Don't distribute site-init.el, site-load.el, or default.el. |
| 329 | for file in lisp/Makefile.in lisp/makefile.w32-in $files; do | 329 | for file in lisp/Makefile.in $files; do |
| 330 | case $file in | 330 | case $file in |
| 331 | */site-init*|*/site-load*|*/default*) continue ;; | 331 | */site-init*|*/site-load*|*/default*) continue ;; |
| 332 | esac | 332 | esac |
| @@ -335,7 +335,6 @@ done | |||
| 335 | 335 | ||
| 336 | echo "Making links to \`leim' and its subdirectories" | 336 | echo "Making links to \`leim' and its subdirectories" |
| 337 | (cd leim | 337 | (cd leim |
| 338 | ln makefile.w32-in ../${tempdir}/leim | ||
| 339 | ln ChangeLog README ../${tempdir}/leim | 338 | ln ChangeLog README ../${tempdir}/leim |
| 340 | ln CXTERM-DIC/README CXTERM-DIC/*.tit ../${tempdir}/leim/CXTERM-DIC | 339 | ln CXTERM-DIC/README CXTERM-DIC/*.tit ../${tempdir}/leim/CXTERM-DIC |
| 341 | ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/leim/SKK-DIC | 340 | ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/leim/SKK-DIC |
| @@ -369,7 +368,6 @@ echo "Making links to \`src'" | |||
| 369 | ln [a-zA-Z]*.in ../${tempdir}/src | 368 | ln [a-zA-Z]*.in ../${tempdir}/src |
| 370 | ln [a-zA-Z]*.mk ../${tempdir}/src | 369 | ln [a-zA-Z]*.mk ../${tempdir}/src |
| 371 | ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src | 370 | ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src |
| 372 | ln makefile.w32-in ../${tempdir}/src | ||
| 373 | ln .gdbinit .dbxinit ../${tempdir}/src | 371 | ln .gdbinit .dbxinit ../${tempdir}/src |
| 374 | cd ../${tempdir}/src | 372 | cd ../${tempdir}/src |
| 375 | rm -f globals.h config.h epaths.h Makefile buildobj.h) | 373 | rm -f globals.h config.h epaths.h Makefile buildobj.h) |
| @@ -382,7 +380,7 @@ echo "Making links to \`lib'" | |||
| 382 | (snippet_h=`(cd build-aux/snippet && ls *.h)` | 380 | (snippet_h=`(cd build-aux/snippet && ls *.h)` |
| 383 | cd lib | 381 | cd lib |
| 384 | ln [a-zA-Z]*.[ch] ../${tempdir}/lib | 382 | ln [a-zA-Z]*.[ch] ../${tempdir}/lib |
| 385 | ln gnulib.mk Makefile.am Makefile.in makefile.w32-in ../${tempdir}/lib | 383 | ln gnulib.mk Makefile.am Makefile.in ../${tempdir}/lib |
| 386 | cd ../${tempdir}/lib | 384 | cd ../${tempdir}/lib |
| 387 | script='/[*]/d; s/\.in\.h$/.h/' | 385 | script='/[*]/d; s/\.in\.h$/.h/' |
| 388 | rm -f `(echo "$snippet_h"; ls *.in.h) | sed "$script"`) | 386 | rm -f `(echo "$snippet_h"; ls *.in.h) | sed "$script"`) |
| @@ -391,8 +389,7 @@ echo "Making links to \`lib-src'" | |||
| 391 | (cd lib-src | 389 | (cd lib-src |
| 392 | ln [a-zA-Z]*.[ch] ../${tempdir}/lib-src | 390 | ln [a-zA-Z]*.[ch] ../${tempdir}/lib-src |
| 393 | ln ChangeLog Makefile.in README testfile ../${tempdir}/lib-src | 391 | ln ChangeLog Makefile.in README testfile ../${tempdir}/lib-src |
| 394 | ln grep-changelog rcs2log ../${tempdir}/lib-src | 392 | ln grep-changelog rcs2log ../${tempdir}/lib-src) |
| 395 | ln makefile.w32-in ../${tempdir}/lib-src) | ||
| 396 | 393 | ||
| 397 | echo "Making links to \`m4'" | 394 | echo "Making links to \`m4'" |
| 398 | (cd m4 | 395 | (cd m4 |
| @@ -401,11 +398,12 @@ echo "Making links to \`m4'" | |||
| 401 | echo "Making links to \`nt'" | 398 | echo "Making links to \`nt'" |
| 402 | (cd nt | 399 | (cd nt |
| 403 | ln emacs-x86.manifest emacs-x64.manifest emacs.rc ../${tempdir}/nt | 400 | ln emacs-x86.manifest emacs-x64.manifest emacs.rc ../${tempdir}/nt |
| 404 | ln config.nt emacsclient.rc emacs-src.tags ../${tempdir}/nt | 401 | ln emacsclient.rc emacs-src.tags ../${tempdir}/nt |
| 405 | ln nmake.defs gmake.defs subdirs.el [a-z]*.bat [a-z]*.[ch] ../${tempdir}/nt | 402 | ln nmake.defs gmake.defs subdirs.el [a-z]*.bat [a-z]*.[ch] ../${tempdir}/nt |
| 403 | rm -f ../${tempdir}/nt/configure.bat | ||
| 406 | ln Makefile.in gnulib.mk ../${tempdir}/nt | 404 | ln Makefile.in gnulib.mk ../${tempdir}/nt |
| 407 | ln msysconfig.sh mingw-cfg.site epaths.nt INSTALL.OLD ../${tempdir}/nt | 405 | ln msysconfig.sh mingw-cfg.site epaths.nt ../${tempdir}/nt |
| 408 | ln ChangeLog INSTALL README README.W32 makefile.w32-in ../${tempdir}/nt) | 406 | ln ChangeLog INSTALL README README.W32 ../${tempdir}/nt) |
| 409 | 407 | ||
| 410 | echo "Making links to \`nt/inc' and its subdirectories" | 408 | echo "Making links to \`nt/inc' and its subdirectories" |
| 411 | for f in `find nt/inc -type f -name '[a-z]*.h'`; do | 409 | for f in `find nt/inc -type f -name '[a-z]*.h'`; do |
| @@ -456,7 +454,7 @@ echo "Making links to \`lwlib'" | |||
| 456 | echo "Making links to \`admin' and its subdirectories" | 454 | echo "Making links to \`admin' and its subdirectories" |
| 457 | for f in `find admin -type f`; do | 455 | for f in `find admin -type f`; do |
| 458 | case $f in | 456 | case $f in |
| 459 | admin/unidata/Makefile) continue ;; | 457 | admin/unidata/Makefile|admin/unidata/makefile.w32-in) continue ;; |
| 460 | esac | 458 | esac |
| 461 | ln $f $tempdir/$f | 459 | ln $f $tempdir/$f |
| 462 | done | 460 | done |
| @@ -488,21 +486,21 @@ ln `find info -type f -print` ${tempdir}/info | |||
| 488 | 486 | ||
| 489 | echo "Making links to \`doc/emacs'" | 487 | echo "Making links to \`doc/emacs'" |
| 490 | (cd doc/emacs | 488 | (cd doc/emacs |
| 491 | ln *.texi *.in makefile.w32-in ChangeLog* ../../${tempdir}/doc/emacs) | 489 | ln *.texi *.in ChangeLog* ../../${tempdir}/doc/emacs) |
| 492 | 490 | ||
| 493 | echo "Making links to \`doc/misc'" | 491 | echo "Making links to \`doc/misc'" |
| 494 | (cd doc/misc | 492 | (cd doc/misc |
| 495 | ln *.texi *.tex *.in makefile.w32-in gnus-news.el ChangeLog* ../../${tempdir}/doc/misc) | 493 | ln *.texi *.tex *.in gnus-news.el ChangeLog* ../../${tempdir}/doc/misc) |
| 496 | 494 | ||
| 497 | echo "Making links to \`doc/lispref'" | 495 | echo "Making links to \`doc/lispref'" |
| 498 | (cd doc/lispref | 496 | (cd doc/lispref |
| 499 | ln *.texi *.in makefile.w32-in README ChangeLog* ../../${tempdir}/doc/lispref | 497 | ln *.texi *.in README ChangeLog* ../../${tempdir}/doc/lispref |
| 500 | ln spellfile ../../${tempdir}/doc/lispref | 498 | ln spellfile ../../${tempdir}/doc/lispref |
| 501 | ln two-volume.make two-volume-cross-refs.txt ../../${tempdir}/doc/lispref) | 499 | ln two-volume.make two-volume-cross-refs.txt ../../${tempdir}/doc/lispref) |
| 502 | 500 | ||
| 503 | echo "Making links to \`doc/lispintro'" | 501 | echo "Making links to \`doc/lispintro'" |
| 504 | (cd doc/lispintro | 502 | (cd doc/lispintro |
| 505 | ln *.texi *.in makefile.w32-in *.eps *.pdf ../../${tempdir}/doc/lispintro | 503 | ln *.texi *.in *.eps *.pdf ../../${tempdir}/doc/lispintro |
| 506 | ln README ChangeLog* ../../${tempdir}/doc/lispintro | 504 | ln README ChangeLog* ../../${tempdir}/doc/lispintro |
| 507 | cd ../../${tempdir}/doc/lispintro) | 505 | cd ../../${tempdir}/doc/lispintro) |
| 508 | 506 | ||