blob: 0314881eb508a1f06bed641bfb25df1dd91f9244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# fetch version number from input file and write them to STDOUT
BEGIN {
while ((getline < ARGV[1]) > 0) {
if (match ($0, /^VERSION=/)) {
split($1, t, "=");
my_ver_str = t[2];
split(my_ver_str, v, ".");
gsub("[^0-9].*$", "", v[3]);
my_ver = v[1] "," v[2] "," v[3];
}
}
print "GEOIP_VERSION = " my_ver "";
print "GEOIP_VERSION_STR = " my_ver_str "";
}
|