Andi Kleen | ccbef16 | 2014-02-08 09:01:13 +0100 | [diff] [blame] | 1 | #!/usr/bin/awk -f |
2 | # extract linker version number from stdin and turn into single number | ||||
3 | { | ||||
4 | gsub(".*)", ""); | ||||
5 | split($1,a, "."); | ||||
James Hogan | d5ece1c | 2015-12-26 22:47:52 +0000 | [diff] [blame^] | 6 | print a[1]*100000000 + a[2]*1000000 + a[3]*10000 + a[4]*100 + a[5]; |
Andi Kleen | ccbef16 | 2014-02-08 09:01:13 +0100 | [diff] [blame] | 7 | exit |
8 | } |