projects
/
deliverable
/
linux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso...
[deliverable/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
gsub
(
".*version "
,
""
);
6
gsub
(
"-.*"
,
""
);
7
split
(
$1
,
a
,
"."
);
8
print a
[
1
]*
100000000
+
a
[
2
]*
1000000
+
a
[
3
]*
10000
;
9
exit
10
}
This page took
0.03897 seconds
and
6
git commands to generate.