1--- pypy-pypy-84a2f3e6a7f8.org/lib_pypy/_tkinter/tklib_build.py 2017-10-03 11:49:20.000000000 +0100
2+++ pypy-pypy-84a2f3e6a7f8/lib_pypy/_tkinter/tklib_build.py 2017-11-21 13:20:51.398607530 +0000
3@@ -24,11 +24,11 @@
4 else:
5 # On some Linux distributions, the tcl and tk libraries are
6 # stored in /usr/include, so we must check this case also
7- libdirs = []
8+ libdirs = ["@tcl@/lib", "@tk@/lib"]
9 found = False
10 for _ver in ['', '8.6', '8.5']:
11- incdirs = ['/usr/include/tcl' + _ver]
12- linklibs = ['tcl' + _ver, 'tk' + _ver]
13+ incdirs = ['@tcl_dev@/include', '@tk_dev@/include']
14+ linklibs = ['@tcl_libprefix@', '@tk_libprefix@']
15 if os.path.isdir(incdirs[0]):
16 found = True
17 break