From 9134a3bf413fe7e498e75ea3d6ad7d6f33040f68 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Sun, 17 Aug 2014 14:17:30 +0400 Subject: [PATCH] gyp: preserve v8dbg syms on freebsd too --- node.gyp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node.gyp b/node.gyp index c3b766059b..5454af2f96 100644 --- a/node.gyp +++ b/node.gyp @@ -191,7 +191,7 @@ ], }, 'conditions': [ - ['OS=="linux"', { + ['OS in "linux freebsd"', { 'ldflags': [ '-Wl,--whole-archive <(PRODUCT_DIR)/libopenssl.a -Wl,--no-whole-archive', ], @@ -351,7 +351,7 @@ ], }], [ - 'OS=="linux" and node_shared_v8=="false"', { + 'OS in "linux freebsd" and node_shared_v8=="false"', { 'ldflags': [ '-Wl,--whole-archive <(V8_BASE) -Wl,--no-whole-archive', ],