mirror of
https://github.com/python/cpython.git
synced 2025-09-29 19:56:59 +00:00
Fix some tests in ./configure for determining macOS compiler choices that could fail if a $PATH element contained spaces.
This commit is contained in:
parent
6f059ab80a
commit
ac360fc56c
2 changed files with 8 additions and 8 deletions
8
configure
vendored
8
configure
vendored
|
@ -3536,14 +3536,14 @@ then
|
|||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
if test -x $as_dir/gcc; then
|
||||
if test -x "${as_dir}/gcc"; then
|
||||
if test -z "${found_gcc}"; then
|
||||
found_gcc=$as_dir/gcc
|
||||
found_gcc="${as_dir}/gcc"
|
||||
fi
|
||||
fi
|
||||
if test -x $as_dir/clang; then
|
||||
if test -x "${as_dir}/clang"; then
|
||||
if test -z "${found_clang}"; then
|
||||
found_clang=$as_dir/clang
|
||||
found_clang="${as_dir}/clang"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
|
@ -642,14 +642,14 @@ then
|
|||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
if test -x $as_dir/gcc; then
|
||||
if test -x "${as_dir}/gcc"; then
|
||||
if test -z "${found_gcc}"; then
|
||||
found_gcc=$as_dir/gcc
|
||||
found_gcc="${as_dir}/gcc"
|
||||
fi
|
||||
fi
|
||||
if test -x $as_dir/clang; then
|
||||
if test -x "${as_dir}/clang"; then
|
||||
if test -z "${found_clang}"; then
|
||||
found_clang=$as_dir/clang
|
||||
found_clang="${as_dir}/clang"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue