From 56f16bc88357054ac19318e5e4f293a4d9776752 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 1 Sep 2023 11:07:00 +0100 Subject: don't do cmake on uefitool if the Makefile exists nasty little hack to fix another nasty little hack, which i call script/build/release/src Signed-off-by: Leah Rowe --- script/handle/make/file | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script/handle/make/file') diff --git a/script/handle/make/file b/script/handle/make/file index dcb2fc6b..0cf6e34c 100755 --- a/script/handle/make/file +++ b/script/handle/make/file @@ -60,7 +60,7 @@ handle_dependencies() if [ "${project}" = "uefitool" ]; then ( cd uefitool || err "handle_dependencies: !cd uefitool" - cmake UEFIExtract/ || \ + [ ! -f UEFIExtract/Makefile ] || cmake UEFIExtract/ || \ err "handle_dependencies: !cmake UEFIExtract/" ) fi -- cgit v1.2.1