From 032373df7fb5de03f24fe549484cc3e6930bf0e7 Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Mon, 5 Aug 2013 14:33:55 -0700 Subject: [PATCH] build: fix ia32 sunos, elfwrap only needs -64 --- node.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.gyp b/node.gyp index c289ce8814..b06f692a49 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)' ],