pythia8: fix configure args (#40644)

Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
This commit is contained in:
Juan Miguel Carceller 2023-11-06 18:33:23 +01:00 committed by GitHub
parent ab563c09d2
commit c6c689be28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -131,16 +131,16 @@ def configure_args(self):
args.append("--with-boost=" + self.spec["boost"].prefix)
if "+madgraph5amc" in self.spec:
args += "--with-mg5mes=" + self.spec["madgraph5amc"].prefix
args.append("--with-mg5mes=" + self.spec["madgraph5amc"].prefix)
else:
args += "--without-mg5mes"
args.append("--without-mg5mes")
args += self.with_or_without("hepmc3", activation_value="prefix")
if "+fastjet" in self.spec:
args += "--with-fastjet3=" + self.spec["fastjet"].prefix
args.append("--with-fastjet3=" + self.spec["fastjet"].prefix)
else:
args += "--without-fastjet3"
args.append("--without-fastjet3")
args += self.with_or_without("evtgen", activation_value="prefix")
args += self.with_or_without("root", activation_value="prefix")