Fix whitespace issue

This commit is contained in:
Sergio Durigan Junior 2018-09-25 09:06:27 -04:00
parent ddbe77a39a
commit 84f6fc7d5c

View file

@ -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)