diff options
Diffstat (limited to 'scripts/config.pl')
-rwxr-xr-x | scripts/config.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config.pl b/scripts/config.pl index a45253729c..dcebfe62c1 100755 --- a/scripts/config.pl +++ b/scripts/config.pl @@ -18,11 +18,11 @@ sub load_config($) { open FILE, "$file" or die "can't open file"; while (<FILE>) { chomp; - /^CONFIG_(.+)=(.+)/ and do { + /^CONFIG_(.+?)=(.+)/ and do { $config{$1} = $2; next; }; - /^# CONFIG_(.+) is not set/ and do { + /^# CONFIG_(.+?) is not set/ and do { $config{$1} = -1; next; }; |