]> Git Repo - linux.git/blob - scripts/ld-version.sh
Merge tag 'microblaze-3.15-rc1' of git://git.monstr.eu/linux-2.6-microblaze
[linux.git] / scripts / ld-version.sh
1 #!/usr/bin/awk -f
2 # extract linker version number from stdin and turn into single number
3         {
4         gsub(".*)", "");
5         split($1,a, ".");
6         print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
7         exit
8         }
This page took 0.031044 seconds and 4 git commands to generate.