Minor package fixes (#6334)

* Add no-implicit-fallthrough to MsgpackC

* Add 0.2.1 of Neovim

* Lint
This commit is contained in:
David Hows
2017-11-17 03:28:40 +11:00
committed by Christoph Junghans
parent 9bffa96754
commit d89b09493c
2 changed files with 12 additions and 3 deletions

View File

@@ -33,3 +33,10 @@ class MsgpackC(CMakePackage):
version('1.4.1', 'e2fd3a7419b9bc49e5017fdbefab87e0')
depends_on('cmake@2.8.12:', type='build')
def cmake_args(self):
args = [
"-DCMAKE_CXX_FLAGS=-Wno-implicit-fallthrough",
"-DCMAKE_C_FLAGS=-Wno-implicit-fallthrough"
]
return args