ostbuild: Don't check for a "Makefile"

WebKit uses GNUmakefile which is totally valid, and this check
isn't really gaining us anything.
This commit is contained in:
Colin Walters 2012-01-18 16:40:47 -05:00
parent 4c22dfef39
commit 4af64c7635
1 changed files with 0 additions and 4 deletions

View File

@ -152,10 +152,6 @@ class OstbuildCompileOne(builtins.Builtin):
args.extend(self.configargs)
run_sync(args, cwd=builddir)
makefile_path = os.path.join(builddir, 'Makefile')
if not os.path.exists(makefile_path):
fatal("No Makefile found")
args = list(self.makeargs)
user_specified_jobs = False
for arg in args: