diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2008-01-01 23:11:13 -0200 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2008-01-01 23:11:13 -0200 |
commit | bb40189633b2e5f356d87ebb73cb4f7cde7362c4 (patch) | |
tree | 137b53ac16ae5e62f4a03c9dd43c067ade573e98 | |
parent | 61982f69784ce0fe80c719b0bab53d78c24779ce (diff) |
Show inkscape command run in SVG regtest.
-rw-r--r-- | input/regression/backend-svg.ly | 6 |
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))) |