mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
Allow configure to handle PATH elements with spaces (#3935)
This commit is contained in:
parent
6e3d6b5dc2
commit
14aa00b519
2 changed files with 8 additions and 8 deletions
8
configure
vendored
8
configure
vendored
|
|
@ -3524,14 +3524,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
|
||||
|
|
|
|||
|
|
@ -621,14 +621,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