Commit c9c56e47 authored by Martin v. Löwis's avatar Martin v. Löwis

Change 'and' to 'or' in _tkinter test.

parent 7634445f
...@@ -932,7 +932,7 @@ class PyBuildExt(build_ext): ...@@ -932,7 +932,7 @@ class PyBuildExt(build_ext):
tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include) tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include)
tk_includes = find_file('tk.h', inc_dirs, debian_tk_include) tk_includes = find_file('tk.h', inc_dirs, debian_tk_include)
if (tcllib is None or tklib is None and if (tcllib is None or tklib is None or
tcl_includes is None or tk_includes is None): tcl_includes is None or tk_includes is None):
# Something's missing, so give up # Something's missing, so give up
return return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment