Fix whitespace issue
This commit is contained in:
parent
ddbe77a39a
commit
84f6fc7d5c
1 changed files with 2 additions and 2 deletions
|
@ -1049,8 +1049,8 @@ The parameters of the class are:
|
||||||
if self.use_system_debuginfo:
|
if self.use_system_debuginfo:
|
||||||
self.extra_conf_flags.append ('--with-separate-debug-dir=%s' % self.system_debuginfo_location)
|
self.extra_conf_flags.append ('--with-separate-debug-dir=%s' % self.system_debuginfo_location)
|
||||||
|
|
||||||
myCFLAGS = "CFLAGS=" + default_CFLAGS + ' '.join (self.extra_CFLAGS)
|
myCFLAGS = "CFLAGS=" + default_CFLAGS + " " + ' '.join (self.extra_CFLAGS)
|
||||||
myCXXFLAGS = "CXXFLAGS=" + default_CXXFLAGS + ' '.join (self.extra_CXXFLAGS)
|
myCXXFLAGS = "CXXFLAGS=" + default_CXXFLAGS + " " + ' '.join (self.extra_CXXFLAGS)
|
||||||
|
|
||||||
self.extra_conf_flags.append (myCFLAGS)
|
self.extra_conf_flags.append (myCFLAGS)
|
||||||
self.extra_conf_flags.append (myCXXFLAGS)
|
self.extra_conf_flags.append (myCXXFLAGS)
|
||||||
|
|
Loading…
Reference in a new issue