Compare commits

...

2 Commits

Author SHA1 Message Date
Leonardo Grasso
d8bc52912e docs(CHANGELOG.md): add hotfix #1662
Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
2021-06-01 09:55:31 +02:00
Leonardo Grasso
1164c639d6 fix(cmake/modules): avoid gRCP files to be installed into packages
This patch is to be intended as a temporary workaround.
The root issue needs to be addressed in `falcosecurity/libs`.
A definite solution will be implemented later.

Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
2021-05-31 18:05:27 +02:00
3 changed files with 15 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
## v0.28.2
Released on 2021-05-27
Released on 2021-06-01
### Major Changes
@@ -20,6 +20,7 @@ Released on 2021-05-27
* docs(proposals): fix libs contribution name [[#1641](https://github.com/falcosecurity/falco/pull/1641)] - [@leodido](https://github.com/leodido)
* add Yahoo!Japan as an adopter [[#1651](https://github.com/falcosecurity/falco/pull/1651)] - [@ukitazume](https://github.com/ukitazume)
* Add Replicated to adopters [[#1649](https://github.com/falcosecurity/falco/pull/1649)] - [@diamonwiggins](https://github.com/diamonwiggins)
* build(cmake/modules): avoid gRCP files to be installed into packages [[#1662](https://github.com/falcosecurity/falco/pull/1662)] - [@leogr](https://github.com/leogr)
## v0.28.1

View File

@@ -25,4 +25,4 @@ ExternalProject_Add(
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
PATCH_COMMAND patch -p1 -i ${CMAKE_CURRENT_SOURCE_DIR}/patch/libscap.patch && patch -p1 -i ${CMAKE_CURRENT_SOURCE_DIR}/patch/luajit.patch)
PATCH_COMMAND patch -p1 -i ${CMAKE_CURRENT_SOURCE_DIR}/patch/libscap.patch && patch -p1 -i ${CMAKE_CURRENT_SOURCE_DIR}/patch/luajit.patch && patch -p1 -i ${CMAKE_CURRENT_SOURCE_DIR}/patch/grpc.patch)

View File

@@ -0,0 +1,12 @@
diff --git a/cmake/modules/grpc.cmake b/cmake/modules/grpc.cmake
index ffa4e6c4..346939b9 100644
--- a/cmake/modules/grpc.cmake
+++ b/cmake/modules/grpc.cmake
@@ -125,6 +125,7 @@ else()
-DZLIB_ROOT:STRING=${ZLIB_SRC}
BUILD_IN_SOURCE 1
BUILD_BYPRODUCTS ${GRPC_LIB} ${GRPCPP_LIB} ${GPR_LIB} ${GRPC_LIBRARIES}
+ INSTALL_COMMAND DESTDIR=/ make install
)
endif()
endif()