Kaydet (Commit) a3223557 authored tarafından Andras Timar's avatar Andras Timar

tdf#76239 fake file version for font files

Change-Id: I59a9401c0bdc2d641ea54498af0eb1e589ab12f3
üst 0871a03b
......@@ -551,6 +551,11 @@ sub get_fileversion
$fileversion = $version . "." . $subversion . "." . $microversion . "." . $vervariant;
}
}
# fake file version for font files (tdf#76239)
if ( $onefile->{'Name'} =~ /\.ttf$|\.TTF$/ )
{
$fileversion = "1.0.0.0";
}
return $fileversion;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment