Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
14aa00b5
Commit
14aa00b5
authored
Oct 09, 2017
by
Ned Deily
Committed by
GitHub
Oct 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow configure to handle PATH elements with spaces (#3935)
parent
6e3d6b5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
configure
configure
+4
-4
configure.ac
configure.ac
+4
-4
No files found.
configure
View file @
14aa00b5
...
...
@@ -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
...
...
configure.ac
View file @
14aa00b5
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment