Correzione flag offline_help.
This commit is contained in:
parent
71edb785d2
commit
e44a70442f
@ -148,11 +148,11 @@ class Build(object):
|
||||
if self.language == 'standard':
|
||||
for lang in Build.LANGSTD:
|
||||
buildtarballs.extend([ x for x in self.tarballs[arch] if ('langpack' + lang) in x ])
|
||||
if self.offlinehelp:
|
||||
if self.offline_help:
|
||||
buildtarballs.extend([ x for x in self.tarballs[arch] if ('helppack' + lang) in x ])
|
||||
else:
|
||||
# In any other cases, we build with all languages
|
||||
if not self.offlinehelp:
|
||||
if not self.offline_help:
|
||||
buildtarballs.extend([ x for x in self.tarballs[arch] if 'langpack' in x ])
|
||||
else:
|
||||
# We need also all help. Let's replace buildtarball with the
|
||||
|
Reference in New Issue
Block a user