CHG: a different version string when compiling on systems without git or the release tags.

This commit is contained in:
iceman1001 2016-09-01 16:11:31 +02:00
commit d515e7a3a0

View file

@ -18,7 +18,13 @@ my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
my $clean = 2;
my @compiletime = gmtime();
my $fullgitinfo = 'iceman' . $gitbranch . '/' . $gitversion;
my $fullgitinfo = 'iceman';
if ( defined $gitbranch and defined $gitversion ) {
$fullgitinfo = '/'. $gitbranch . '/' . $gitversion;
} else {
$fullgitinfo = '/master/release-build (no_git)';
}
$fullgitinfo =~ s/(\s)//g;