]> granicus.if.org Git - handbrake/commitdiff
build: move --flatpak option into configure "Build Options"
authorJohn Stebbins <jstebbins.hb@gmail.com>
Thu, 7 Jun 2018 15:29:04 +0000 (08:29 -0700)
committerJohn Stebbins <jstebbins.hb@gmail.com>
Thu, 7 Jun 2018 22:01:33 +0000 (15:01 -0700)
make/configure.py

index 916a5c2b0fe8e26e1965d0aa752c90b7e3384364..b2fa916bed2fa1d388e9c2219d72072c2f07ef99 100644 (file)
@@ -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