diff options
| author | Eli Zaretskii | 2001-12-21 10:17:16 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-12-21 10:17:16 +0000 |
| commit | df926aaa7a9ecca4510498076d96493c3db3ec97 (patch) | |
| tree | e83528a2053374739b994adaa06904196c381584 | |
| parent | 8d8d8d4e61cd5461632a79a567905a95856748fe (diff) | |
| download | emacs-df926aaa7a9ecca4510498076d96493c3db3ec97.tar.gz emacs-df926aaa7a9ecca4510498076d96493c3db3ec97.zip | |
Set SHELL and VPATH when running makeinfo in lispintro.
Don't copy lispref/index.texi to the staging directory.
| -rwxr-xr-x | make-dist | 5 |
1 files changed, 3 insertions, 2 deletions
| @@ -242,7 +242,7 @@ then | |||
| 242 | echo "Updating Info files" | 242 | echo "Updating Info files" |
| 243 | (cd man; make -f Makefile.in srcdir=. info) | 243 | (cd man; make -f Makefile.in srcdir=. info) |
| 244 | (cd lispref; make -f Makefile.in srcdir=. info) | 244 | (cd lispref; make -f Makefile.in srcdir=. info) |
| 245 | (cd lispintro; make -f Makefile.in srcdir=. info) | 245 | (cd lispintro; make -f Makefile.in SHELL=/bin/sh srcdir=. info VPATH=.) |
| 246 | 246 | ||
| 247 | echo "Updating finder, custom and autoload data" | 247 | echo "Updating finder, custom and autoload data" |
| 248 | (cd lisp; make updates EMACS="$EMACS") | 248 | (cd lisp; make updates EMACS="$EMACS") |
| @@ -595,7 +595,8 @@ echo "Making links to \`man'" | |||
| 595 | 595 | ||
| 596 | echo "Making links to \`lispref'" | 596 | echo "Making links to \`lispref'" |
| 597 | (cd lispref | 597 | (cd lispref |
| 598 | ln *.texi *.aux *.cps *.fns *.kys *.vrs index.*perm ../${tempdir}/lispref | 598 | ln `ls -1 *.texi | grep -v index.texi` ../${tempdir}/lispref |
| 599 | ln *.aux *.cps *.fns *.kys *.vrs index.*perm ../${tempdir}/lispref | ||
| 599 | ln *.txt *.el spellfile permute-index tindex.pl ../${tempdir}/lispref | 600 | ln *.txt *.el spellfile permute-index tindex.pl ../${tempdir}/lispref |
| 600 | test -f README && ln README ../${tempdir}/lispref | 601 | test -f README && ln README ../${tempdir}/lispref |
| 601 | test -f Makefile.in && ln Makefile.in ../${tempdir}/lispref | 602 | test -f Makefile.in && ln Makefile.in ../${tempdir}/lispref |