summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4a0556bb3..114d4c4f5 100755
--- a/configure
+++ b/configure
@@ -763,7 +763,7 @@ sub getcache {
# Ignore Blank lines, and comments..
next if /^\s*$/;
next if /^\s*#/;
- my ($key, $value) = split("=", $_);
+ my ($key, $value) = split("=", $_, 2);
$value =~ /^\"(.*)\"$/;
# Do something with data here!
$config{$key} = $1;