Lines Matching full:join

35 scriptPath = os.path.join(os.path.dirname(__file__), "..", "scripts")
57 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
59 readonlydir = os.path.join(fullDstPath, ".git")
88 archiveDir = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir)
93 archiveFile = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir, pkg.filename)
100 return os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.archiveDir, "extracted")
137 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
150 srcPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
151 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir)
152 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
168 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])):
171 topLevelPath = os.path.join(tmpPath, extractedEntries[0])
177 if os.path.exists(os.path.join(dstPath, entry)):
180 shutil.move(os.path.join(topLevelPath, entry), dstPath)
200 file = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.extractDir, pkg.filename)
230 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir, self.filename)
250 if not os.path.exists(os.path.join(fullDstPath, '.git')):
265 patchFile = os.path.join(EXTERNAL_DIR, self.patch)
272 fullDstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
288 shutil.copy(os.path.join(path, "scripts", "pnglibconf.h.prebuilt"),
289 os.path.join(path, "pnglibconf.h"))
354 versionsForInsecureStr = ' or '.join(('.'.join(str(x) for x in v)) for v in versionsForInsecure)