Compare commits

...

2 commits

Author SHA1 Message Date
Christos Kloukinas
ee4e04c002 Merge branch 'develop' into 'develop'
Small fixes so that manual.pdf can be created

See merge request embeddable-common-lisp/ecl!360
2025-11-28 12:40:06 +00:00
c-kloukinas
f09058f12f Added local script to be called first instead of texi2pdf, so that it can set
both the PDFTEX and the PATH variables before calling the real texi2pdf.
In this way, the real texi2pdf knows which PDFTEX to use
(z-texi2pdfetex-fix-aux) and where to find it (the current directory).
2025-11-28 12:37:51 +00:00
3 changed files with 8 additions and 3 deletions

View file

@ -9,7 +9,7 @@ info: ecl.info.gz
html: html/index.html
manual.pdf: $(FILES)
PDFTEX=z-texi2pdfetex-fix-aux texi2pdf manual.txi
./x-texi2pdf manual.txi
ecl.info.gz: $(FILES)
$(MAKEINFO) --no-split manual.txi

7
src/doc/manual/x-texi2pdf Executable file
View file

@ -0,0 +1,7 @@
#! /bin/sh -
export PATH=.:${PATH}
export PDFTEX=z-texi2pdfetex-fix-aux
texi2pdf $*

View file

@ -17,5 +17,3 @@ for f in x *.aux ; do
mv temp $f
fi
done
echo 'Called '$0 >&2