diff options
-rw-r--r-- | make/configure.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/make/configure.py b/make/configure.py index 916a5c2b0..b2fa916be 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1352,12 +1352,8 @@ def createCLI(): grp.add_option( '--enable-local-cmake', default=False, action='store_true', help=h ) h = IfHost( 'Build and use local pkg-config', '*-*-darwin*', none=optparse.SUPPRESS_HELP ).value grp.add_option( '--enable-local-pkgconfig', default=False, action='store_true', help=h ) - - h = IfHost( 'Build extra contribs for flatpak packaging', '*-*-linux*', '*-*-freebsd*', none=optparse.SUPPRESS_HELP ).value - grp.add_option( '--flatpak', default=False, action='store_true', help=h ) cli.add_option_group( grp ) - ## add Xcode options if host.match( '*-*-darwin*' ): grp = OptionGroup( cli, 'Xcode Options' ) @@ -1386,6 +1382,9 @@ def createCLI(): grp = OptionGroup( cli, 'Build Options' ) grp.add_option( '--snapshot', default=False, action='store_true', help='Force a snapshot build' ) + + h = IfHost( 'Build extra contribs for flatpak packaging', '*-*-linux*', '*-*-freebsd*', none=optparse.SUPPRESS_HELP ).value + grp.add_option( '--flatpak', default=False, action='store_true', help=h ) cli.add_option_group( grp ) return cli |