Use self when accessing extra_conf_flags

This commit is contained in:
Sergio Durigan Junior 2018-04-12 15:37:14 -04:00
parent 02b3202867
commit c87a9191f1

View file

@ -1054,7 +1054,7 @@ The parameters of the class are:
self.extra_conf_flags.append ("CXXFLAGS=%s" % default_CXXFLAGS + ' '.join (self.extra_CXXFLAGS))
self.extra_conf_flags.append (architecture_triplet)
self.addStep (self.ConfigureClass (extra_conf_flags, haltOnFailure = True))
self.addStep (self.ConfigureClass (self.extra_conf_flags, haltOnFailure = True))
if not self.extra_make_flags:
self.extra_make_flags = []