Mercurial > emacs
comparison make-dist @ 42220:62671693b79f
Set SHELL and VPATH when running makeinfo in lispintro.
Don't copy lispref/index.texi to the staging directory.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 21 Dec 2001 10:17:16 +0000 |
parents | 42f6d0b683bf |
children | e13df10b6b63 |
comparison
equal
deleted
inserted
replaced
42219:3465372c9239 | 42220:62671693b79f |
---|---|
240 if [ $update = yes ]; | 240 if [ $update = yes ]; |
241 then | 241 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") |
249 | 249 |
250 if test -f leim/leim-list.el; then | 250 if test -f leim/leim-list.el; then |
593 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail | 593 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail |
594 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux) | 594 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux) |
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 |
602 ln ChangeLog ../${tempdir}/lispref | 603 ln ChangeLog ../${tempdir}/lispref |
603 cd ../${tempdir}/lispref | 604 cd ../${tempdir}/lispref |