From 57b63c130649a30c221ae310567a955e26bc4b7a Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 2 Jun 2015 21:46:40 +0200 Subject: [PATCH] Corrected bug when options have an '=' --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 7857e13..f15a11b 100755 --- a/configure.py +++ b/configure.py @@ -38,7 +38,7 @@ def read_make_config(): with open("make.config",'r') as f: for line in f.readlines(): try: - key, value = line.strip().split('=') + key, value = line.strip().split('=',1) except: print "Error in make.config:" print line