Revert deprecated configure flags

This commit is contained in:
Adam J. Stewart 2016-01-19 09:43:28 -06:00
parent 16f1267c29
commit f48fc0d8b1

View File

@ -68,10 +68,10 @@ def install(self, spec, prefix):
# these compilers if they're "disabled" for the current # these compilers if they're "disabled" for the current
# compiler configuration. # compiler configuration.
if not self.compiler.f77: if not self.compiler.f77:
config_args.append("--disable-fortran=f77") config_args.append("--disable-f77")
if not self.compiler.fc: if not self.compiler.fc:
config_args.append("--disable-fortran=fc") config_args.append("--disable-fc")
configure(*config_args) configure(*config_args)
make() make()