commit | 032373df7fb5de03f24fe549484cc3e6930bf0e7 | [log] [tgz] |
---|---|---|
author | Timothy J Fontaine <[email protected]> | Mon Aug 05 21:33:55 2013 |
committer | Timothy J Fontaine <[email protected]> | Mon Aug 05 21:33:55 2013 |
tree | 42d415f6eb173c2cd5510c47245f192a8656e92f | |
parent | e851fef60f5368927ea0a6b7bfc984ef18e93d6f [diff] |
build: fix ia32 sunos, elfwrap only needs -64
diff --git a/node.gyp b/node.gyp index c289ce8..b06f692 100644 --- a/node.gyp +++ b/node.gyp
@@ -430,7 +430,7 @@ 'outputs': [ '<(PRODUCT_DIR)/obj.target/node/src/node_mdb.o' ], 'conditions': [ [ 'target_arch=="ia32"', { - 'action': [ 'elfwrap', '-32', '-o', '<@(_outputs)', '<@(_inputs)' ], + 'action': [ 'elfwrap', '-o', '<@(_outputs)', '<@(_inputs)' ], } ], [ 'target_arch=="x64"', { 'action': [ 'elfwrap', '-64', '-o', '<@(_outputs)', '<@(_inputs)' ],