Alex Henrie : buildimage: Use "rsvg-convert" as the default RSVG command.
Module: wine Branch: master Commit: 608b6e2018d44a96c271898d32c5924bb4d0c5b0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=608b6e2018d44a96c271898d32... Author: Alex Henrie <alexhenrie24(a)gmail.com> Date: Thu Oct 19 01:35:49 2017 -0600 buildimage: Use "rsvg-convert" as the default RSVG command. The command "rsvg" was renamed to "rsvg-convert" five years ago. Signed-off-by: Alex Henrie <alexhenrie24(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- tools/buildimage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildimage b/tools/buildimage index cd24755..74519fd 100755 --- a/tools/buildimage +++ b/tools/buildimage @@ -42,7 +42,7 @@ my @hotspot; # Get the programs from the environment variables my $convert = $ENV{"CONVERT"} || "convert"; -my $rsvg = $ENV{"RSVG"} || "rsvg"; +my $rsvg = $ENV{"RSVG"} || "rsvg-convert"; my @icotool_args = ($ENV{"ICOTOOL"} || "icotool", "--create", $ext eq "cur" ? "--cursor" : "--icon", "-o", $outFileName);
participants (1)
-
Alexandre Julliard