diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-01 11:07:00 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-01 11:07:00 +0100 |
commit | 56f16bc88357054ac19318e5e4f293a4d9776752 (patch) | |
tree | 7e037ccf033f88299e2fcab58acd58fca4476dec | |
parent | 98d1ea5ae7fed70b3ecf40c15d9b7be1714e0b91 (diff) |
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 <leah@libreboot.org>
-rwxr-xr-x | script/handle/make/file | 2 |
1 files changed, 1 insertions, 1 deletions
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 |