FIX: this should remove some warnings while compiling on linux and when running Travis-CI in a docker container.

some format specifier for uint64_t
and getting the git history in the perl script.
This commit is contained in:
iceman1001 2016-01-15 12:43:29 +01:00
commit 43d3f76921
4 changed files with 14 additions and 11 deletions

View file

@ -5,12 +5,14 @@
# -- Henryk Plötz <henryk@ploetzli.ch> 2009-09-28
# Modified april 2014 because of the move to github.
# --- Martin Holst Swende <martin@swende.se>
# Modified january 2016 to work with Travis-CI
# --- iceman <iceman@iuse.se>
# Clear environment locale so that git will not use localized strings
$ENV{'LC_ALL'} = "C";
$ENV{'LANG'} = "C";
my $githistory = `git fetch --all`;
my $gitversion = `git describe --dirty`;
my $gitbranch = `git rev-parse --abbrev-ref HEAD`;
my $clean = 2;