`no-autogen` is already default to false.
We don't need to add it by default.
This commit is contained in:
parent
17a786092a
commit
6b5df23b03
|
@ -138,7 +138,8 @@ class FlatpakBuilder:
|
||||||
module['name'] = stepDef[1]
|
module['name'] = stepDef[1]
|
||||||
if stepDef[0] == 'source':
|
if stepDef[0] == 'source':
|
||||||
source = get_target_step(stepDef)
|
source = get_target_step(stepDef)
|
||||||
module['no-autogen'] = getattr(source, 'flatpack_no_autogen', False)
|
if getattr(source, 'flatpak_no_autogen', False):
|
||||||
|
module['no-autogen'] = True
|
||||||
module_sources = module.setdefault('sources', [])
|
module_sources = module.setdefault('sources', [])
|
||||||
if isinstance(source, ReleaseDownload):
|
if isinstance(source, ReleaseDownload):
|
||||||
src = {
|
src = {
|
||||||
|
|
Loading…
Reference in New Issue