From 48877edfb8fc77976ca54121dc87e57343d9e851 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 6 Aug 2011 03:36:36 -0700 Subject: [PATCH] Work around GYP bug - use absolute paths --- build/gyp_uv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gyp_uv b/build/gyp_uv index e74969734..ce2a64ac3 100755 --- a/build/gyp_uv +++ b/build/gyp_uv @@ -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):