diff options
Diffstat (limited to 'posters/Makefile')
-rw-r--r-- | posters/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/posters/Makefile b/posters/Makefile index b77a5f3..032d6bc 100644 --- a/posters/Makefile +++ b/posters/Makefile @@ -17,10 +17,10 @@ all: $(ALL) # General cases %.pdf: %.odg - libreoffice --invisible --convert-to pdf $< + libreoffice --headless "-env:UserInstallation=file:///tmp/lo-$$" --convert-to pdf $< %.pdf: %.odt - libreoffice --invisible --convert-to pdf $< + libreoffice --headless "-env:UserInstallation=file:///tmp/lo-$$" --convert-to pdf $< %.png: %.pdf convert $< $@ @@ -34,6 +34,7 @@ all: $(ALL) send: rsync -ruvp --chmod=Dugo+rx,Fugo+r $(SEND_FILES) www.fripost.org:/var/www/fripost.org/material/ + @echo; echo Now avialable as; for f in $(SEND_FILES); do echo " - https://fripost.org/material/$$f"; done clean: rm -fr $(ALL) |