X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fbackend-svg.ly;h=f74f65852cedb271462c3e40b8c35d85c4c8c008;hb=d2762a4f1add2bb04d6fc34d3c7ae03eeb7d500f;hp=823016e85bcce00c2607d69591ffbd5ecc8f195e;hpb=9cf485743fe1f5f6e2de3d2c5e070b67055edeb7;p=lilypond.git diff --git a/input/regression/backend-svg.ly b/input/regression/backend-svg.ly index 823016e85b..f74f65852c 100644 --- a/input/regression/backend-svg.ly +++ b/input/regression/backend-svg.ly @@ -1,11 +1,11 @@ - +\version "2.16.0" +%{ #(ly:set-option 'backend 'svg) #(set! output-count 1) \include "typography-demo.ly" -\version "2.11.16" #(define outname (ly:parser-output-name parser)) @@ -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))) @@ -40,3 +44,4 @@ } } } +%}