From 94d40ca1583a11aa4712fd52795e3611ee42b582 Mon Sep 17 00:00:00 2001 From: Wonki Kim Date: Fri, 28 Jun 2019 01:45:56 +0000 Subject: [PATCH] meson: remove autotools checking stuffs autotools has been removed. so that the autotools checking logic is not needed. this patch removes them. Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D9198 --- meson.build | 5 ----- meson/clean_check.sh | 3 --- 2 files changed, 8 deletions(-) delete mode 100644 meson/clean_check.sh diff --git a/meson.build b/meson.build index 25c922f..ec29f9d 100644 --- a/meson.build +++ b/meson.build @@ -8,11 +8,6 @@ if host_machine.system() == 'darwin' add_languages('objc') endif -clean_check = run_command('meson/clean_check.sh') -if clean_check.returncode() == 0 - error('Meson build requires a clean source tree') -endif - pkgconfig = import('pkgconfig') test_env = environment() diff --git a/meson/clean_check.sh b/meson/clean_check.sh deleted file mode 100644 index c054794..0000000 --- a/meson/clean_check.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -test -f ${MESON_SOURCE_ROOT}/configure -- 2.7.4