Work around GYP bug - use absolute paths

This commit is contained in:
Ryan Dahl 2011-08-06 03:36:36 -07:00
parent 60e973172e
commit 48877edfb8

View File

@ -13,7 +13,7 @@ import gyp
# Directory within which we want all generated files (including Makefiles)
# to be written.
output_dir = os.path.join(uv_root, 'out')
output_dir = os.path.join(os.path.abspath(uv_root), 'out')
def run_gyp(args):