Changeset 42244 in vbox
- Timestamp:
- Jul 20, 2012 12:48:27 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/Makefile.kmk
r41477 r42244 240 240 PDFLATEX_INTERACTION ?= batchmode 241 241 ifeq ($(KBUILD_HOST),win) 242 # tell MiKTeX to automatically download packages 243 PDFLATEX = pdflatex -halt-on-error -interaction $(PDFLATEX_INTERACTION) --enable-installer 242 ifndef VBOX_PDFLATEX 243 VBOX_PDFLATEX := $(firstword $(rsort $(wildcard $(PATH_DEVTOOLS)/win.x86/miktex-portable/*/miktex/bin/pdflatex.exe))) 244 ifneq ($(VBOX_PDFLATEX),) 245 PDFLATEX = $(VBOX_PDFLATEX) -halt-on-error -interaction $(PDFLATEX_INTERACTION) 246 endif 247 endif 248 ifndef PDFLATEX 249 # Tell MiKTeX to automatically download packages if system wide install. 250 VBOX_PDFLATEX := pdflatex 251 PDFLATEX = $(VBOX_PDFLATEX) -halt-on-error -interaction $(PDFLATEX_INTERACTION) --enable-installer 252 endif 244 253 else 245 254 PDFLATEX_HALT = $(shell \
Note:
See TracChangeset
for help on using the changeset viewer.