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
c4c4842d
Commit
c4c4842d
authored
Oct 21, 2012
by
Matthias Klose
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
parent
5f8f0d67
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
24 deletions
+31
-24
Makefile.pre.in
Makefile.pre.in
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+22
-17
configure.ac
configure.ac
+6
-6
No files found.
Makefile.pre.in
View file @
c4c4842d
...
...
@@ -280,7 +280,7 @@ AST_ASDL= $(srcdir)/Parser/Python.asdl
ASDLGEN_FILES
=
$(srcdir)
/Parser/asdl.py
$(srcdir)
/Parser/asdl_c.py
# XXX Note that a build now requires Python exist before the build starts
ASDLGEN
=
@
DISABLE_
ASDLGEN@
$(srcdir)
/Parser/asdl_c.py
ASDLGEN
=
@ASDLGEN@
$(srcdir)
/Parser/asdl_c.py
##########################################################################
# Python
...
...
Misc/NEWS
View file @
c4c4842d
...
...
@@ -590,6 +590,8 @@ Tests
Build
-----
- Issue #16262: fix out-of-src-tree builds, if mercurial is not installed.
- Issue #15923: fix a mistake in asdl_c.py that resulted in a TypeError after
2801bf875a24 (see #15801).
...
...
configure
View file @
c4c4842d
...
...
@@ -645,8 +645,8 @@ MKDIR_P
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
HAS_
PYTHON
DISABLE_
ASDLGEN
PYTHON
ASDLGEN
HAS_HG
HGBRANCH
HGTAG
...
...
@@ -5281,16 +5281,17 @@ else
fi
DISABLE_ASDLGEN
=
""
# Extract the first word of "python", so it can be a program name with args.
set
dummy python
;
ac_word
=
$2
for
ac_prog
in
python
$PACKAGE_VERSION
python3 python
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set
dummy
$ac_prog
;
ac_word
=
$2
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for
$ac_word
"
>
&5
$as_echo_n
"checking for
$ac_word
... "
>
&6
;
}
if
${
ac_cv_prog_
HAS_
PYTHON
+
:
}
false
;
then
:
if
${
ac_cv_prog_PYTHON
+
:
}
false
;
then
:
$as_echo_n
"(cached) "
>
&6
else
if
test
-n
"
$
HAS_
PYTHON
"
;
then
ac_cv_prog_
HAS_PYTHON
=
"
$HAS_
PYTHON
"
# Let the user override the test.
if
test
-n
"
$PYTHON
"
;
then
ac_cv_prog_
PYTHON
=
"
$
PYTHON
"
# Let the user override the test.
else
as_save_IFS
=
$IFS
;
IFS
=
$PATH_SEPARATOR
for
as_dir
in
$PATH
...
...
@@ -5299,7 +5300,7 @@ do
test
-z
"
$as_dir
"
&&
as_dir
=
.
for
ac_exec_ext
in
''
$ac_executable_extensions
;
do
if
{
test
-f
"
$as_dir
/
$ac_word$ac_exec_ext
"
&&
$as_test_x
"
$as_dir
/
$ac_word$ac_exec_ext
"
;
}
;
then
ac_cv_prog_
HAS_PYTHON
=
"found
"
ac_cv_prog_
PYTHON
=
"
$ac_prog
"
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: found
$as_dir
/
$ac_word$ac_exec_ext
"
>
&5
break
2
fi
...
...
@@ -5307,22 +5308,26 @@ done
done
IFS
=
$as_save_IFS
test
-z
"
$ac_cv_prog_HAS_PYTHON
"
&&
ac_cv_prog_HAS_PYTHON
=
"not-found"
fi
fi
HAS_PYTHON
=
$ac_cv_prog_HAS
_PYTHON
if
test
-n
"
$
HAS_
PYTHON
"
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$
HAS_
PYTHON
"
>
&5
$as_echo
"
$
HAS_
PYTHON
"
>
&6
;
}
PYTHON
=
$ac_cv_prog
_PYTHON
if
test
-n
"
$PYTHON
"
;
then
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$PYTHON
"
>
&5
$as_echo
"
$PYTHON
"
>
&6
;
}
else
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result: no"
>
&5
$as_echo
"no"
>
&6
;
}
fi
if
test
$HAS_HG
!=
found
-o
$HAS_PYTHON
!=
found
then
DISABLE_ASDLGEN
=
"@echo hg:
$HAS_HG
, python:
$HAS_PYTHON
! cannot run
\$
(srcdir)/Parser/asdl_c.py #"
test
-n
"
$PYTHON
"
&&
break
done
test
-n
"
$PYTHON
"
||
PYTHON
=
"not-found"
if
$PYTHON
=
not-found
;
then
ASDLGEN
=
"@echo python:
$PYTHON
! cannot run
\$
(srcdir)/Parser/asdl_c.py #"
else
ASDLGEN
=
"
$PYTHON
"
fi
...
...
configure.ac
View file @
c4c4842d
...
...
@@ -867,12 +867,12 @@ else
HGBRANCH=""
fi
AC_SUBST(
DISABLE_
ASDLGEN)
DISABLE_ASDLGEN=""
AC_CHECK_PROG(HAS_PYTHON, python, found, not-found)
if test $HAS_HG != found -o $HAS_PYTHON != found
then
DISABLE_ASDLGEN="@echo hg: $HAS_HG, python: $HAS_PYTHON! cannot run \$(srcdir)/Parser/asdl_c.py #
"
AC_SUBST(ASDLGEN)
AC_CHECK_PROGS(PYTHON, python$PACKAGE_VERSION python3 python, not-found)
if $PYTHON = not-found; then
ASDLGEN="@echo python: $PYTHON! cannot run \$(srcdir)/Parser/asdl_c.py #"
else
ASDLGEN="$PYTHON
"
fi
...
...
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