diff options
| author | Alex Shi <alex.shi@linaro.org> | 2016-03-17 12:51:17 +0800 |
|---|---|---|
| committer | Alex Shi <alex.shi@linaro.org> | 2016-03-17 12:51:17 +0800 |
| commit | 127f7fb4c452328fa24f4c29eb403a97c5f7ea8c (patch) | |
| tree | f76942e04ec3ca226503c74b0c04130ffb7d4c4c /scripts | |
| parent | fa6e6c7406806f9d4119703e4c3ad661c25b99ee (diff) | |
| parent | 6d0b88c88bf58bfd89ffbdaa97b03617fe8c6478 (diff) | |
Merge branch 'linux-linaro-lsk-v4.4' into linux-linaro-lsk-v4.4-android
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/ld-version.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ld-version.sh b/scripts/ld-version.sh index 198580d245e0..1659b409ef10 100755 --- a/scripts/ld-version.sh +++ b/scripts/ld-version.sh @@ -1,7 +1,7 @@ #!/usr/bin/awk -f # extract linker version number from stdin and turn into single number { - gsub(".*)", ""); + gsub(".*\\)", ""); split($1,a, "."); print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5]; exit |
