pythia8: fix configure args (#40644)
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
This commit is contained in:
		 Juan Miguel Carceller
					Juan Miguel Carceller
				
			
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			 GitHub
						GitHub
					
				
			
						parent
						
							ab563c09d2
						
					
				
				
					commit
					c6c689be28
				
			| @@ -131,16 +131,16 @@ def configure_args(self): | |||||||
|                 args.append("--with-boost=" + self.spec["boost"].prefix) |                 args.append("--with-boost=" + self.spec["boost"].prefix) | ||||||
| 
 | 
 | ||||||
|         if "+madgraph5amc" in self.spec: |         if "+madgraph5amc" in self.spec: | ||||||
|             args += "--with-mg5mes=" + self.spec["madgraph5amc"].prefix |             args.append("--with-mg5mes=" + self.spec["madgraph5amc"].prefix) | ||||||
|         else: |         else: | ||||||
|             args += "--without-mg5mes" |             args.append("--without-mg5mes") | ||||||
| 
 | 
 | ||||||
|         args += self.with_or_without("hepmc3", activation_value="prefix") |         args += self.with_or_without("hepmc3", activation_value="prefix") | ||||||
| 
 | 
 | ||||||
|         if "+fastjet" in self.spec: |         if "+fastjet" in self.spec: | ||||||
|             args += "--with-fastjet3=" + self.spec["fastjet"].prefix |             args.append("--with-fastjet3=" + self.spec["fastjet"].prefix) | ||||||
|         else: |         else: | ||||||
|             args += "--without-fastjet3" |             args.append("--without-fastjet3") | ||||||
| 
 | 
 | ||||||
|         args += self.with_or_without("evtgen", activation_value="prefix") |         args += self.with_or_without("evtgen", activation_value="prefix") | ||||||
|         args += self.with_or_without("root", activation_value="prefix") |         args += self.with_or_without("root", activation_value="prefix") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user