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:
parent
4c22dfef39
commit
4af64c7635
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue