From: John Stebbins Date: Thu, 7 Jun 2018 15:29:04 +0000 (-0700) Subject: build: move --flatpak option into configure "Build Options" X-Git-Tag: 1.2.0~373 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f33dc20059d69915570b235385497eddc6be37e7;p=handbrake build: move --flatpak option into configure "Build Options" --- 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