From: John Stebbins Date: Wed, 31 Aug 2016 15:56:28 +0000 (-0700) Subject: build: fix configure error created by flatpak commit X-Git-Tag: 1.0.0~255 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7a320cb6223a2389db025e8bd8001ee9ece9769;p=handbrake build: fix configure error created by flatpak commit --- diff --git a/make/configure.py b/make/configure.py index 5952b22ac..d4a0dff5a 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1346,8 +1346,8 @@ def createCLI(): 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 ) - if host.match( '*-*-linux*' ): - grp.add_option( '--flatpak', default=False, action='store_true', help='Build extra contribs for flatpak' ) + h = IfHost( 'Build extra contribs for flatpak packaging', '*-*-linux*', none=optparse.SUPPRESS_HELP ).value + grp.add_option( '--flatpak', default=False, action='store_true', help=h ) cli.add_option_group( grp )