mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-09-13 13:49:55 +00:00
Remove some bashisms from all.sh
Other branches use bash for all.sh, but we're still using plain sh. Signed-off-by: Manuel Pégourié-Gonnard <[email protected]>
This commit is contained in:
@@ -1725,12 +1725,12 @@ support_test_cmake_out_of_source () {
|
|||||||
|
|
||||||
# Attempt to parse lsb-release to find out distribution and version. If not
|
# Attempt to parse lsb-release to find out distribution and version. If not
|
||||||
# found this should fail safe (test is supported).
|
# found this should fail safe (test is supported).
|
||||||
if [[ -f /etc/lsb-release ]]; then
|
if [ -f /etc/lsb-release ]; then
|
||||||
|
|
||||||
while read -r lsb_line; do
|
while read -r lsb_line; do
|
||||||
case "$lsb_line" in
|
case "$lsb_line" in
|
||||||
"DISTRIB_ID"*) distrib_id=${lsb_line/#DISTRIB_ID=};;
|
"DISTRIB_ID"*) distrib_id=${lsb_line#DISTRIB_ID=};;
|
||||||
"DISTRIB_RELEASE"*) distrib_ver=${lsb_line/#DISTRIB_RELEASE=};;
|
"DISTRIB_RELEASE"*) distrib_ver=${lsb_line#DISTRIB_RELEASE=};;
|
||||||
esac
|
esac
|
||||||
done < /etc/lsb-release
|
done < /etc/lsb-release
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user