aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure.ac
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2012-01-27 18:23:12 +0000
committerDoug Evans <dje@google.com>2012-01-27 18:23:12 +0000
commit8c85a4e2f7b1b536104ffcb95f843fb048c229e9 (patch)
treeb1a9719995b22a60cd60a59c50042aa7679210e2 /gdb/configure.ac
parent0d048da385c7e7febf19e3fb57e9acbc59370439 (diff)
downloadgdb-8c85a4e2f7b1b536104ffcb95f843fb048c229e9.zip
gdb-8c85a4e2f7b1b536104ffcb95f843fb048c229e9.tar.gz
gdb-8c85a4e2f7b1b536104ffcb95f843fb048c229e9.tar.bz2
* configure.ac (with_python): Fix absolute path handling for win32.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r--gdb/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac
index 6f9a42c..cf11605 100644
--- a/gdb/configure.ac
+++ b/gdb/configure.ac
@@ -734,7 +734,7 @@ if test "${with_python}" = no; then
have_libpython=no
else
case "${with_python}" in
- /*)
+ [[\\/]]* | ?:[[\\/]]*)
if test -d ${with_python}; then
# Assume the python binary is ${with_python}/bin/python.
python_prog="${with_python}/bin/python"