Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_universal7904
/
1245799f752fa817a030b3b4448466e83ee7d61d
/
.
/
scripts
/
ld-version.sh
blob: 198580d245e033b8b674fdad3d1aa1cb21f0fd2e [
file
] [
log
] [
blame
]
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
{
gsub
(
".*)"
,
""
);
split
(
$1
,
a
,
"."
);
print a
[
1
]*
10000000
+
a
[
2
]*
100000
+
a
[
3
]*
10000
+
a
[
4
]*
100
+
a
[
5
];
exit
}