You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
From c2aff16cc196a61f4ab1cdae4a91c7926123c239 Mon Sep 17 00:00:00 2001 |
|
From: Zuzana Svetlikova <zsvetlik@redhat.com> |
|
Date: Thu, 27 Apr 2017 14:25:42 +0200 |
|
Subject: [PATCH] Disable running gyp on shared deps |
|
|
|
--- |
|
Makefile | 7 +++---- |
|
1 file changed, 3 insertions(+), 4 deletions(-) |
|
|
|
diff --git a/Makefile b/Makefile |
|
index 0a217bd893..e1229ad07f 100644 |
|
--- a/Makefile |
|
+++ b/Makefile |
|
@@ -79,10 +79,9 @@ $(NODE_G_EXE): config.gypi out/Makefile |
|
$(MAKE) -C out BUILDTYPE=Debug V=$(V) |
|
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Debug/$(NODE_EXE) $@; fi |
|
|
|
-out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \ |
|
- deps/zlib/zlib.gyp deps/v8/gypfiles/toolchain.gypi \ |
|
- deps/v8/gypfiles/features.gypi deps/v8/src/v8.gyp node.gyp \ |
|
- config.gypi |
|
+out/Makefile: common.gypi deps/http_parser/http_parser.gyp \ |
|
+ deps/v8/gypfiles/toolchain.gypi deps/v8/gypfiles/features.gypi \ |
|
+ deps/v8/src/v8.gyp node.gyp config.gypi |
|
$(PYTHON) tools/gyp_node.py -f make |
|
|
|
config.gypi: configure |
|
-- |
|
2.12.2
|
|
|