Lines Matching refs:path

67 -r prefix=f:  Replace path prefix.
68 Replace prefix with f in the source path references
78 module names that are search in the path instead.
118 path = sys.path[:]
218 ishome = os.path.exists(os.path.join(prefix, 'Python', 'ceval.c'))
231 incldir = os.path.join(prefix, 'Include')
233 config_c_in = os.path.join(prefix, 'Modules', 'config.c.in')
234 frozenmain_c = os.path.join(prefix, 'Python', 'frozenmain.c')
235 makefile_in = os.path.join(exec_prefix, 'Makefile')
237 frozendllmain_c = os.path.join(exec_prefix, 'Pc\\frozen_dllmain.c')
240 incldir = os.path.join(prefix, 'include', 'python%s' % flagged_version)
241 config_h_dir = os.path.join(exec_prefix, 'include',
243 config_c_in = os.path.join(configdir, 'config.c.in')
244 frozenmain_c = os.path.join(configdir, 'frozenmain.c')
245 makefile_in = os.path.join(configdir, 'Makefile')
246 frozendllmain_c = os.path.join(configdir, 'frozen_dllmain.c')
258 if not os.path.exists(dir):
260 if not os.path.isdir(dir):
267 if not os.path.exists(file):
269 if not os.path.isfile(file):
273 setup = os.path.join(dir, 'Setup')
274 if not os.path.exists(setup):
276 if not os.path.isfile(setup):
292 if not os.path.exists(arg):
294 if not os.path.isfile(arg):
302 base = os.path.basename(scriptfile)
303 base, ext = os.path.splitext(base)
314 if odir and not os.path.isdir(odir):
322 base = os.path.join(odir, '')
323 frozen_c = os.path.join(odir, frozen_c)
324 config_c = os.path.join(odir, config_c)
325 target = os.path.join(odir, target)
326 makefile = os.path.join(odir, makefile)
327 if win: extensions_c = os.path.join(odir, extensions_c)
347 dir = os.path.dirname(scriptfile)
348 path[0] = dir
349 mf = modulefinder.ModuleFinder(path, debug, exclude, replace_paths)
436 xtras = [frozenmain_c, os.path.basename(frozen_c),
437 frozendllmain_c, os.path.basename(extensions_c)] + files
444 os.path.basename(target))
454 libs = [os.path.join(libdir, '$(LDLIBRARY)')]
457 if os.path.exists(makefile_in):