X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=build%2Fgenconf;h=7a53dc1b3c824749ec689b0a30db8d93feecef47;hb=0e5c5828c3f3e1abd14bd012827e6b467075290b;hp=b088a142d17c072f9f7ed7b598d14d259d32f379;hpb=e270ec25872050be5a969a4a5b85f888e9ec5468;p=libucw.git diff --git a/build/genconf b/build/genconf index b088a142..7a53dc1b 100755 --- a/build/genconf +++ b/build/genconf @@ -10,7 +10,7 @@ use warnings; open CF, $ARGV[2] or die "Unable to open $ARGV[2]"; my %options = (); while () { - /^(CONFIG_\w+)=1/ || next; + /^(CONFIG_\w+)=[^0]/ || next; $options{$1} = 1; } close CF;