czmq package: add autoreconf stage (#12846)

This commit is contained in:
Paul 2019-09-20 19:14:41 -06:00 committed by Peter Scheibel
parent d9c22e3f9c
commit ef652ee42a

View File

@ -22,6 +22,10 @@ class Czmq(AutotoolsPackage):
depends_on("libuuid")
depends_on('zeromq')
def autoreconf(self, spec, prefix):
autogen = Executable('./autogen.sh')
autogen()
def configure_args(self):
config_args = []
if 'clang' in self.compiler.name: