Skip to content
Snippets Groups Projects
Commit 907546b5 authored by Denis Davydov's avatar Denis Davydov Committed by Todd Gamblin
Browse files

libcerf: fix for modern clang (#1959)

parent 9e7f53a3
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,12 @@ class Libcerf(Package):
version('1.3', 'b3504c467204df71e62aeccf73a25612')
def install(self, spec, prefix):
configure('--prefix=%s' % prefix)
options = []
# Clang reports unused functions as errors, see
# http://clang.debian.net/status.php?version=3.8.1&key=UNUSED_FUNCTION
if spec.satisfies('%clang'):
options.append('CFLAGS=-Wno-unused-function')
configure('--prefix=%s' % prefix, *options)
make()
make("install")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment