From 58bd3b0764c21d484b04b59f11b61a747fd3491b Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Thu, 12 Jun 2014 14:35:09 +0000
Subject: [PATCH] scripts/metadata.pl: avoid adding depends and select for the
 same symbol

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 41160
---
 scripts/metadata.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index eed1998d27..e408beb507 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -504,7 +504,7 @@ sub mconf_depends {
 					next if $depend eq $condition;
 					$depend = "$depend if $condition";
 				} else {
-					$depend = "!($condition) || $depend";
+					$depend = "!($condition) || $depend" unless $dep->{$condition} eq 'select';
 				}
 			}
 		}
-- 
2.30.2