Hi,

I was building a custom kernel package based on the 2.6.16-rc1-mm2 and I
had this problem to. When parsing the configuration, yaird does a
sensitive match on lower case. 
The following patch fixe the issue for me :

--- /usr/lib/yaird/perl/KConfig.pm.orig        2006-01-22 16:54:00.000000000 
+0100
+++ /usr/lib/yaird/perl/KConfig.pm     2006-01-22 16:54:09.000000000 +0100
@@ -65,7 +65,7 @@ sub init () {
                if ($value eq 'y'
                        || $value eq 'm'
                        || $value =~ /^-?\d+$/
-                       || $value =~ /^0x[0-9a-f]+$/
+                       || $value =~ /^0x[0-9a-f]+$/i
                        || $value =~ /^"[-a-zA-Z0-9@,._\/= ]*"$/
                ) {
                        $kConfMap->{$key} = $value;

Regards,
Arnaud



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to