From 0e77ef05bce104aedc4a661ed978cef98ec77a1f Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 22 Apr 2008 13:27:40 +0200 Subject: [PATCH] Make sure DISPLAY is unset for inkscape processing. --- doc/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 8d35e79..03e4898 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -109,10 +109,10 @@ uninstall-hook: rm -r $(DESTDIR)$(docdir) domfilter.png: domfilter.svg - inkscape --export-png=$@ --export-width=600 $? + unset DISPLAY; inkscape --export-png=$@ --export-width=600 $? domfilter.eps: domfilter.svg - inkscape --export-eps=$@ --export-bbox-page $? + unset DISPLAY; inkscape --export-eps=$@ --export-bbox-page $? .eps.pdf: epstopdf -hires $? -- 1.7.10.4