Created
December 27, 2011 18:58
-
-
Save rphillips/1524792 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/deps/luajit.gyp b/deps/luajit.gyp | |
index 3032abc..d81b8d1 100644 | |
--- a/deps/luajit.gyp | |
+++ b/deps/luajit.gyp | |
@@ -3,15 +3,15 @@ | |
'conditions': [ | |
['OS == "win"', { | |
'asm_format': 'peobj', | |
- 'lj_vm': 'luajit/src/lj_vm.obj', | |
+ 'lj_vm': '<(INTERMEDIATE_DIR)/luajit/src/lj_vm.obj', | |
}], | |
['OS == "mac"', { | |
'asm_format': 'machasm', | |
- 'lj_vm': 'luajit/src/lj_vm.s', | |
+ 'lj_vm': '<(INTERMEDIATE_DIR)/luajit/src/lj_vm.s', | |
}], | |
['OS == "linux"', { | |
'asm_format': 'elfasm', | |
- 'lj_vm': 'luajit/src/lj_vm.s', | |
+ 'lj_vm': '<(INTERMEDIATE_DIR)/luajit/src/lj_vm.s', | |
}] | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment