diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2019-08-24 07:37:43 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-08-24 07:37:43 +0700 |
commit | f054c587164c52fe440c4d0e5f31bf08bc892db4 (patch) | |
tree | 0cdb4d54b02071bace37453a222761b62f5a9857 /libraries/grpc/grpc-use-shell-loop-instead-makefile-function.patch | |
parent | f7390313b6fa0b071735c2ee83ea5efd191f8762 (diff) |
libraries/grpc: Added (High performance general RPC framework).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/grpc/grpc-use-shell-loop-instead-makefile-function.patch')
-rw-r--r-- | libraries/grpc/grpc-use-shell-loop-instead-makefile-function.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libraries/grpc/grpc-use-shell-loop-instead-makefile-function.patch b/libraries/grpc/grpc-use-shell-loop-instead-makefile-function.patch new file mode 100644 index 0000000000000..2d1c98fe1dbb3 --- /dev/null +++ b/libraries/grpc/grpc-use-shell-loop-instead-makefile-function.patch @@ -0,0 +1,25 @@ +From fe221f7d6fcf04e296f3b8598f57abc9e3dea821 Mon Sep 17 00:00:00 2001 +From: Sergey Avseyev <sergey.avseyev@gmail.com> +Date: Wed, 16 Jan 2019 20:00:40 +0300 +Subject: [PATCH 3/4] use shell loop instead makefile function + +this avoids failure when too long string passed to exec +--- + Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile b/Makefile +index 2bdfa6395d..51614620af 100644 +--- a/Makefile ++++ b/Makefile +@@ -2950,7 +2950,7 @@ install-headers_c: + install-headers_cxx: + $(E) "[INSTALL] Installing public C++ headers" + $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1 +- $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1 ++ $(Q) for h in $(PUBLIC_HEADERS_CXX); do $(INSTALL) $$h $(prefix)/$$h; done || exit 1 + + install-static: install-static_c install-static_cxx + +-- +2.21.0 |