From: Bradley Sepos Date: Sat, 4 Nov 2017 09:54:41 +0000 (-0400) Subject: build: Fix configure to report success when REV=0 in version.txt. X-Git-Tag: 1.1.0~341 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c987dedc125819bf840b561224d1b8707715238b;p=handbrake build: Fix configure to report success when REV=0 in version.txt. Instead make sure we have a possibly sane HASH value. --- diff --git a/make/configure.py b/make/configure.py index 90efeb22e..71f310ea5 100644 --- a/make/configure.py +++ b/make/configure.py @@ -775,7 +775,7 @@ class RepoProbe( ShellProbe ): self.session = in_file.readlines() if self.session: self._parseSession() - if self.rev != 0: + if self.hash is not empty and self.hash is not 'deadbeaf': cfg.infof( '(pass)\n' ) else: cfg.infof( '(fail)\n' )