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@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2017-10-19 01:35:49 -06:00 committed by Alexandre Julliard
parent 30c957b9cc
commit 608b6e2018
1 changed files with 1 additions and 1 deletions

View File

@ -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);