mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	scripts/package-metadata.pl: fix overriding conditional dependencies with conditional select
Conditional dependencies use the '(!cond) || dep' syntax, whereas conditional select uses 'dep if cond'. Add an extra check to suppress emitting a conditional if an equal conditional select already exists. Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
		
							parent
							
								
									90f0ca0ddc
								
							
						
					
					
						commit
						cfd83555fc
					
				@ -215,11 +215,13 @@ sub mconf_depends {
 | 
			
		||||
				$flags =~ /@/ or $depend = "PACKAGE_$depend";
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if ($condition) {
 | 
			
		||||
			if ($m =~ /select/) {
 | 
			
		||||
				next if $depend eq $condition;
 | 
			
		||||
				$depend = "$depend if $condition";
 | 
			
		||||
			} else {
 | 
			
		||||
				next if $dep->{"$depend if $condition"};
 | 
			
		||||
				$depend = "!($condition) || $depend" unless $dep->{$condition} eq 'select';
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user