diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-10-29 17:39:19 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-10-29 17:39:19 (GMT) |
commit | 2bb842a2ef771b73cf3e0308c4341b0ecc56d9fd (patch) | |
tree | c6639ce0b8eb97cc04cd450aa1ce678e31973b89 /configure.ac | |
parent | 21fecc764c5ab5d367b2c0bc6ecf4e30ff14d556 (diff) | |
parent | 646eb1e8566821bd0129ce1ef5d300168856010e (diff) | |
download | cpython-2bb842a2ef771b73cf3e0308c4341b0ecc56d9fd.zip cpython-2bb842a2ef771b73cf3e0308c4341b0ecc56d9fd.tar.gz cpython-2bb842a2ef771b73cf3e0308c4341b0ecc56d9fd.tar.bz2 |
Merge with 3.3 for issue #16262
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 94d5b80..5b1fc63 100644 --- a/configure.ac +++ b/configure.ac @@ -1002,7 +1002,7 @@ AC_SUBST(READELF) AC_SUBST(ASDLGEN) AC_CHECK_PROGS(PYTHON, python$PACKAGE_VERSION python3 python, not-found) -if $PYTHON = not-found; then +if test "$PYTHON" = not-found; then ASDLGEN="@echo python: $PYTHON! cannot run \$(srcdir)/Parser/asdl_c.py #" else ASDLGEN="$PYTHON" |