1.0.9.48: texi2pdf rework (Aymeric Vincent sbcl-devel 2007-09-05)

It looks likely that texi2dvi is more ubiquitous than texi2pdf,
	so just apply the patch.
	... (plus whitespace and .cvsignore collateral changes).
This commit is contained in:
Christophe Rhodes 2007-09-09 07:32:28 +00:00
parent 94476bde09
commit fab0742469
5 changed files with 13 additions and 6 deletions

View file

@ -1,6 +1,8 @@
*.aux
*.cp
*.cps
*.fn
*.fns
*.info
*.ky
*.log
@ -8,5 +10,6 @@
*.pg
*.toc
*.tp
*.txt
*.vr
*.include

View file

@ -1,3 +1,7 @@
ifeq ($(TEXI2PDF),)
TEXI2PDF:=texi2dvi -p
endif
.PHONY: top clean html all
all: sbcl-internals.pdf sbcl-internals.info
@ -22,7 +26,7 @@ info: top
epstopdf $< > $@
sbcl-internals.pdf: top $(patsubst %.dot,%.pdf,$(wildcard *.dot)) *.texinfo
texi2pdf sbcl-internals.texinfo
$(TEXI2PDF) sbcl-internals.texinfo
sbcl-internals.info: top $(patsubst %.dot,%.txt,$(wildcard *.dot)) *.texinfo

View file

@ -30,7 +30,7 @@ ifeq ($(MAKEINFO),)
endif
ifeq ($(TEXI2PDF),)
TEXI2PDF:=texi2pdf
TEXI2PDF:=texi2dvi -p
endif
ifeq ($(DVIPS),)
@ -73,7 +73,7 @@ ps: $(PSFILES)
pdf: $(PDFFILES)
%.pdf: %.texinfo $(DOCFILES) docstrings
texi2pdf $(I_FLAGS) $<
$(TEXI2PDF) $(I_FLAGS) $<
# info docfiles
.PHONY: info

View file

@ -194,8 +194,8 @@
(defun valid-wrapper-of (instance)
(let ((wrapper (wrapper-of instance)))
(if (invalid-wrapper-p wrapper)
(check-wrapper-validity instance)
wrapper)))
(check-wrapper-validity instance)
wrapper)))
;;; NIL: means nothing so far, no actual arg info has NILs in the
;;; metatype.

View file

@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
"1.0.9.47"
"1.0.9.48"