Do not use single quotes to quote environment variables
This commit is contained in:
parent
358bf1bc85
commit
e3e791daa0
@ -165,7 +165,7 @@ class CConfig(SimpleConfig):
|
||||
string = ''
|
||||
if vars:
|
||||
for v in vars:
|
||||
string += "%s='%s' " % (v, vars[v])
|
||||
string += '%s="%s" ' % (v, vars[v])
|
||||
return string
|
||||
|
||||
def __get_make(self, suffix=None):
|
||||
|
Loading…
x
Reference in New Issue
Block a user