diff options
author | Masamichi Hosoda <trueroad@trueroad.jp> | 2016-01-08 23:40:55 +0900 |
---|---|---|
committer | Masamichi Hosoda <trueroad@trueroad.jp> | 2016-01-16 15:13:46 +0900 |
commit | a25ed225a877a9eec1212733f8ed9ee65ab7bfb6 (patch) | |
tree | 3ef9d1278777e414387a074b1381f88ceabcd26f /Documentation/pictures | |
parent | 0e10173ca92b8a12b37bf95cbb672889951636de (diff) |
Issue 4729: Fix document building for XeTeX
If the documents were built by XeTeX,
XeTeX couldn't find picture/pdf/*.pdf for building essay.pdf.
This commit creates symlink to solve the problem.
In the case of pdfTeX, it does not affect.
Diffstat (limited to 'Documentation/pictures')
-rw-r--r-- | Documentation/pictures/GNUmakefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/pictures/GNUmakefile b/Documentation/pictures/GNUmakefile index 131de3e323..ef72775059 100644 --- a/Documentation/pictures/GNUmakefile +++ b/Documentation/pictures/GNUmakefile @@ -19,7 +19,7 @@ include $(depth)/make/stepmake.make default: ifeq ($(out),www) -local-WWW-1: $(OUT_BITMAP_IMAGES) $(OUT_PDF_IMAGES) +local-WWW-1: $(OUT_BITMAP_IMAGES) $(OUT_PDF_IMAGES) $(outdir)/pdf endif ######### @@ -43,3 +43,5 @@ $(outdir)/%.png: %.eps $(outdir)/%.pdf: %.eps gs -dAutoRotatePages=/None -q -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -sOutputFile=$@ -dEPSCrop -c .setpdfwrite -f $< +$(outdir)/pdf: + ln -sf $(top-src-dir)/Documentation/pictures/pdf $@ |