From f33dc20059d69915570b235385497eddc6be37e7 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Thu, 7 Jun 2018 08:29:04 -0700 Subject: [PATCH] build: move --flatpak option into configure "Build Options" --- make/configure.py | 7 +++---- 1 file 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 -- 2.40.0