Use correct title in exif data
This commit is contained in:
parent
6882b16b3c
commit
6b0539a532
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ MAIN_PDF=$(BUILD_DIR)/main.pdf
|
||||||
PRINTOUT_PDF=$(BUILD_DIR)/main-printout.pdf
|
PRINTOUT_PDF=$(BUILD_DIR)/main-printout.pdf
|
||||||
ALL=$(CLEANED_PDFS)
|
ALL=$(CLEANED_PDFS)
|
||||||
REV_FILE=$(BUILD_DIR)/version
|
REV_FILE=$(BUILD_DIR)/version
|
||||||
|
TITLE_EN=$(shell cat meta/title-en.txt)
|
||||||
|
|
||||||
all: _setup $(ALL)
|
all: _setup $(ALL)
|
||||||
|
|
||||||
|
@ -26,7 +27,7 @@ $(CLEANED_PDFS):
|
||||||
exiftool -all:all= \
|
exiftool -all:all= \
|
||||||
-Version="$(shell bin/version.sh)" \
|
-Version="$(shell bin/version.sh)" \
|
||||||
-Author="Théophile Bastian" \
|
-Author="Théophile Bastian" \
|
||||||
-Title="Performance study: identifying bottlenecks by means of sensitivity analysis" \
|
-Title="$(TITLE_EN)" \
|
||||||
"$@"
|
"$@"
|
||||||
@ pdffonts "$@" | grep -q ' no' && echo -e "\033[0;1;31mSOME FONTS NOT EMBEDDED\033[0m" || true
|
@ pdffonts "$@" | grep -q ' no' && echo -e "\033[0;1;31mSOME FONTS NOT EMBEDDED\033[0m" || true
|
||||||
@ !(pdffonts "$@" | grep -q ' no')
|
@ !(pdffonts "$@" | grep -q ' no')
|
||||||
|
|
Loading…
Reference in a new issue