mirror of https://github.com/python/cpython
[3.13] gh-120291: Fix a bashism in python-config.sh.in (GH-120292) (#120341)
gh-120291: Fix a bashism in python-config.sh.in (GH-120292)
gh-120291: Fix bashisms in python-config.sh.in
Replace the use of bash-specific `[[ ... ]]` with POSIX-compliant
`[ ... ]` to make the `python-config` shell script work with non-bash
shells again. While at it, use `local` in a safer way, since it is
not in POSIX either (though universally supported).
Fixes GH-120291
(cherry picked from commit 7d2447137e
)
Co-authored-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
parent
52225c64f7
commit
7993268beb
|
@ -0,0 +1 @@
|
|||
Make the ``python-config`` shell script compatible with non-bash shells.
|
|
@ -4,11 +4,12 @@
|
|||
|
||||
exit_with_usage ()
|
||||
{
|
||||
local USAGE="Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir|--embed"
|
||||
if [[ "$1" -eq 0 ]]; then
|
||||
echo "$USAGE"
|
||||
local usage
|
||||
usage="Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir|--embed"
|
||||
if [ "$1" -eq 0 ]; then
|
||||
echo "$usage"
|
||||
else
|
||||
echo "$USAGE" >&2
|
||||
echo "$usage" >&2
|
||||
fi
|
||||
exit $1
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue