Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Remove bashisms from scripts

The '-e' option to echo and brace expansion are not guaranteed to be supported
by a POSIX-compliant /bin/sh (e.g. dash)

Signed-off-by: dann frazier <dannf@debian.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>

authored by

dann frazier and committed by
Sam Ravnborg
bdefe35d a9eb5223

+2 -2
+1 -1
scripts/gcc-version.sh
··· 18 18 19 19 if [ ${#compiler} -eq 0 ]; then 20 20 echo "Error: No compiler specified." 21 - echo -e "Usage:\n\t$0 <gcc-command>" 21 + printf "Usage:\n\t$0 <gcc-command>\n" 22 22 exit 1 23 23 fi 24 24
+1 -1
scripts/ver_linux
··· 65 65 ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \ 66 66 'NR==1{print "Dynamic linker (ldd) ", $NF}' 67 67 68 - ls -l /usr/lib/lib{g,stdc}++.so 2>/dev/null | awk -F. \ 68 + ls -l /usr/lib/libg++.so /usr/lib/libstdc++.so 2>/dev/null | awk -F. \ 69 69 '{print "Linux C++ Library " $4"."$5"."$6}' 70 70 71 71 ps --version 2>&1 | grep version | awk \