Index: config.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/config.py,v retrieving revision 1.18 diff -c -r1.18 config.py *** config.py 10 Nov 2004 22:23:15 -0000 1.18 --- config.py 22 Mar 2005 02:38:36 -0000 *************** *** 279,285 **** try: src, obj, exe = self._link(body, headers, include_dirs, libraries, library_dirs, lang) ! self.spawn([exe]) ok = 1 except (CompileError, LinkError, DistutilsExecError): ok = 0 --- 279,286 ---- try: src, obj, exe = self._link(body, headers, include_dirs, libraries, library_dirs, lang) ! command = os.path.join(os.curdir, exe) ! self.spawn([command]) ok = 1 except (CompileError, LinkError, DistutilsExecError): ok = 0