summaryrefslogtreecommitdiffstats
path: root/make/configure.py
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-06-07 08:29:04 -0700
committerJohn Stebbins <[email protected]>2018-06-07 15:01:33 -0700
commitf33dc20059d69915570b235385497eddc6be37e7 (patch)
treeafec1cb6612377711df23ad8f21a06e34b1ad086 /make/configure.py
parent6039235accda957c9e791a45942030ef24df99d5 (diff)
build: move --flatpak option into configure "Build Options"
Diffstat (limited to 'make/configure.py')
-rw-r--r--make/configure.py7
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