summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>2008-01-01 23:11:13 -0200
committerHan-Wen Nienhuys <hanwen@xs4all.nl>2008-01-01 23:11:13 -0200
commitbb40189633b2e5f356d87ebb73cb4f7cde7362c4 (patch)
tree137b53ac16ae5e62f4a03c9dd43c067ade573e98
parent61982f69784ce0fe80c719b0bab53d78c24779ce (diff)
Show inkscape command run in SVG regtest.
-rw-r--r--input/regression/backend-svg.ly6
1 files changed, 5 insertions, 1 deletions
diff --git a/input/regression/backend-svg.ly b/input/regression/backend-svg.ly
index 823016e85b..61993ea013 100644
--- a/input/regression/backend-svg.ly
+++ b/input/regression/backend-svg.ly
@@ -17,7 +17,11 @@
%% LD_LIBRARY_PATH is necesssary, otherwise, it doesn't build in GUB.
%% LD_LIBRARY_PATH is part of the start-environment but should be switched off
%% for external inkscape.
-#(ly:system (format #f "LD_LIBRARY_PATH= inkscape -T -E ~a-inkscape.eps ~a-1.svg" outname outname)
+#(let*
+ ((cmd (format #f
+ "LD_LIBRARY_PATH= inkscape --without-gui --export-text-to-path --export-eps ~a-inkscape.eps ~a-1.svg" outname outname)))
+ (ly:progress "Running ~a" cmd)
+ (ly:system cmd)
(cons
(format #f "FONTCONFIG_FILE=~a/fonts/fonts.conf" (ly:effective-prefix))
(ly:start-environment)))