mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
kbuild: ver_linux fix glibc version print
Fix ver_linux glibc version printing (for real this time) Alexey Dobriyan reported that commit 4a645d5ea65baaa5736bcb566673bf4a351b2ad8 broke ver_linux when glibc has a 3 digit version number, and proposed a patch. Al Viro then suggested a simpler way to solve the problem which I've then simply put into patch form. Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru> Signed-off-by: Al Viro <viro@ftp.linux.org.uk> Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
de47062a17
commit
9cc3ef3034
@ -65,9 +65,8 @@ isdnctrl 2>&1 | grep version | awk \
|
|||||||
showmount --version 2>&1 | grep nfs-utils | awk \
|
showmount --version 2>&1 | grep nfs-utils | awk \
|
||||||
'NR==1{print "nfs-utils ", $NF}'
|
'NR==1{print "nfs-utils ", $NF}'
|
||||||
|
|
||||||
ls -l `ldd /bin/sh | awk '/libc/{print $3}'` | sed \
|
echo -n "Linux C Library "
|
||||||
-e 's/\.so$//' | sed -e 's/>//' | \
|
sed -n -e '/^.*\/libc-\([^/]*\)\.so$/{s//\1/;p;q}' < /proc/self/maps
|
||||||
awk -F'[.-]' '{print "Linux C Library "$(NF-1)"."$NF}'
|
|
||||||
|
|
||||||
ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
|
ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
|
||||||
'NR==1{print "Dynamic linker (ldd) ", $NF}'
|
'NR==1{print "Dynamic linker (ldd) ", $NF}'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user