Kaydet (Commit) 00234d05 authored tarafından David Tardon's avatar David Tardon

replace bashisms

Change-Id: I4d7709effb8cb98827e6bdd62e422186d61ed2a0
üst 55563832
...@@ -7546,8 +7546,8 @@ if test $enable_python = system; then ...@@ -7546,8 +7546,8 @@ if test $enable_python = system; then
# 2.6.2 currently on OpenSUSE 12.1? # 2.6.2 currently on OpenSUSE 12.1?
# rpm -q mingw32-python => mingw32-python-2.6.2-17.17.noarch # rpm -q mingw32-python => mingw32-python-2.6.2-17.17.noarch
PYTHON_VERSION=$python_version.2 PYTHON_VERSION=$python_version.2
PYTHON_VERSION_MAJOR=${python_version%.*} PYTHON_VERSION_MAJOR=`echo $python_version | cut -d . -f 1`
PYTHON_VERSION_MINOR=${python_version#*.} PYTHON_VERSION_MINOR=`echo $python_version | cut -d . -f 2`
break break
fi fi
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment