- Drop debug builds that no one uses - Drop debugging statements for HTTP2 that don't work Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From a27a177bad26840ff24e24b98cb27722d97d165f Mon Sep 17 00:00:00 2001
|
|
From: Zuzana Svetlikova <zsvetlik@redhat.com>
|
|
Date: Thu, 27 Apr 2017 14:25:42 +0200
|
|
Subject: [PATCH 1/3] Disable running gyp on shared deps
|
|
|
|
---
|
|
Makefile | 7 +++----
|
|
1 file changed, 3 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 799bb2640ea89a4c08461d39276127c21dea3107..1e3cfd6f0845351d70ce5bda3c6d3723dce78292 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -90,14 +90,13 @@ $(NODE_EXE): config.gypi out/Makefile
|
|
|
|
$(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
|
|
$(error Missing or stale $@, please run ./$<)
|
|
|
|
--
|
|
2.21.0
|
|
|