From: Han-Wen Nienhuys Date: Wed, 2 Jan 2008 01:11:13 +0000 (-0200) Subject: Show inkscape command run in SVG regtest. X-Git-Tag: release/2.11.37-1~7 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bb40189633b2e5f356d87ebb73cb4f7cde7362c4;p=lilypond.git Show inkscape command run in SVG regtest. --- 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)))