Skip to content

Instantly share code, notes, and snippets.

@rphillips
Created December 27, 2011 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rphillips/1524792 to your computer and use it in GitHub Desktop.
Save rphillips/1524792 to your computer and use it in GitHub Desktop.
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