From: Bradley Sepos Date: Sat, 13 Apr 2019 15:55:13 +0000 (-0400) Subject: make: Fix initialization of minver in configure.py. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=271f22a80435a159ffed8c52d0c8d211e6bb8404;p=handbrake make: Fix initialization of minver in configure.py. --- diff --git a/make/configure.py b/make/configure.py index 90e269e6c..111dac98d 100644 --- a/make/configure.py +++ b/make/configure.py @@ -201,9 +201,9 @@ class Configure( object ): else: self.sysroot_dir = "" - if options.minver != None: + try: self.minver = options.minver - else: + except: self.minver = "" ## special case if src == build: add build subdir