Home | History | Annotate | Download | only in BuildScript

Lines Matching refs:WORKDIR

113 WORKDIR = "/tmp/_py"
117 DEPSRC = os.path.join(WORKDIR, 'third-party')
174 --build-dir=DIR: Create build here (default: %(WORKDIR)r)
237 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
257 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')),
306 shellQuote(os.path.join(WORKDIR, 'libraries')),
307 shellQuote(os.path.join(WORKDIR, 'libraries')),
342 shellQuote(os.path.join(WORKDIR, 'libraries')),
353 shellQuote(os.path.join(WORKDIR, 'libraries')),
620 global WORKDIR, DEPSRC, SRCDIR, DEPTARGET
647 WORKDIR=v
677 WORKDIR=os.path.abspath(WORKDIR)
687 print(" * Build directory: %s" % WORKDIR)
944 buildDir=os.path.join(WORKDIR, '_bld')
948 workDir = extractArchive(buildDir, sourceArchive)
949 os.chdir(workDir)
1042 Build our dependencies into $WORKDIR/libraries/usr/local
1047 universal = os.path.join(WORKDIR, 'libraries')
1061 rootDir = os.path.join(WORKDIR, '_root')
1084 buildDir = os.path.join(WORKDIR, '_bld', 'python')
1085 rootDir = os.path.join(WORKDIR, '_root')
1104 os.environ['DYLD_LIBRARY_PATH'] = os.path.join(WORKDIR,
1120 shellQuote(WORKDIR)[1:-1],))[internalTk()],
1122 shellQuote(WORKDIR)[1:-1],))[internalTk()],
1123 shellQuote(WORKDIR)[1:-1],
1124 shellQuote(WORKDIR)[1:-1]))
1156 if os.path.exists(os.path.join(WORKDIR, 'libraries', 'Library')):
1158 WORKDIR, 'libraries', 'Library', 'Frameworks',
1161 WORKDIR, '_root', 'Library', 'Frameworks',
1241 include_path = '-I%s/libraries/usr/local/include' % (WORKDIR,)
1242 lib_path = '-L%s/libraries/usr/local/lib' % (WORKDIR,)
1373 srcdir = os.path.join(WORKDIR, '_root', srcdir[1:])
1469 for dirpath, _, filenames in os.walk(os.path.join(WORKDIR, '_root')):
1474 outdir = os.path.join(WORKDIR, 'installer')
1514 shellQuote(os.path.join(WORKDIR, '_root'))))
1523 outdir = os.path.join(WORKDIR, 'diskimage')
1537 shellQuote(os.path.join(WORKDIR, 'installer')),
1545 if not os.path.exists(os.path.join(WORKDIR, "mnt")):
1546 os.mkdir(os.path.join(WORKDIR, "mnt"))
1548 shellQuote(imagepath + ".tmp.dmg"), shellQuote(os.path.join(WORKDIR, "mnt"))))
1552 os.path.join(WORKDIR, "mnt", volname, ".VolumeIcon.icns"))
1554 shellQuote(os.path.join(WORKDIR, "mnt", volname)),))
1556 runCommand("hdiutil detach %s"%(shellQuote(os.path.join(WORKDIR, "mnt", volname))))
1596 if os.path.exists(WORKDIR):
1597 shutil.rmtree(WORKDIR)
1598 os.mkdir(WORKDIR)
1619 folder = os.path.join(WORKDIR, "_root", "Applications", "Python %s"%(
1637 os.path.join(WORKDIR, 'installer', 'ReadMe.rtf'))
1641 os.path.join(WORKDIR, 'installer', 'License.rtf'))
1643 fp = open(os.path.join(WORKDIR, 'installer', 'Build.txt'), 'w')