diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-06-30 12:11:06 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-06-30 12:11:09 -0400 |
commit | 6e9eda556717ad651a6a691db8d6dc68556285cb (patch) | |
tree | 14aa16910ddaad71dc309064d1761d1f0d200542 /depends | |
parent | e7f3450b7d36b2999680bd7fded703e3445c995b (diff) | |
parent | 63d0a079e04dad42c6f63793505a0af59d085a7f (diff) |
Merge #16271: build: remove -Wall from rapidcheck build flags
63d0a079e04dad42c6f63793505a0af59d085a7f build: dont compile rapidcheck with -Wall (fanquake)
Pull request description:
Fixes #16062.
Remove `-Wall` from the rapidcheck build flags pre compilation.
Discussed briefly with theuni.
ACKs for top commit:
MarcoFalke:
ACK 63d0a079e04dad42c6f63793505a0af59d085a7f (checked that `RAPIDCHECK=1 make rapidcheck` fails without this)
Tree-SHA512: 6cb3653221c1eadbc8da54812298a061130b4377da6f63dcc2dfb97379d303b4db538e67f4fe3c96a03ee6a1e65840f0def0ac4e862553480c7ac4bdcc77e113
Diffstat (limited to 'depends')
-rw-r--r-- | depends/packages/rapidcheck.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/depends/packages/rapidcheck.mk b/depends/packages/rapidcheck.mk index a35e091c80..fa4fb3c782 100644 --- a/depends/packages/rapidcheck.mk +++ b/depends/packages/rapidcheck.mk @@ -8,6 +8,10 @@ define $(package)_config_cmds cmake -DCMAKE_INSTALL_PREFIX=$($(package)_staging_dir)$(host_prefix) -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true -DRC_INSTALL_ALL_EXTRAS=ON endef +define $(package)_preprocess_cmds + sed -i.old 's/ -Wall//' CMakeLists.txt +endef + define $(package)_build_cmds $(MAKE) rapidcheck endef |