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>
btrfsvols
Leah Rowe 2023-09-01 11:07:00 +01:00
parent 98d1ea5ae7
commit 56f16bc883
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ handle_dependencies()
if [ "${project}" = "uefitool" ]; then if [ "${project}" = "uefitool" ]; then
( (
cd uefitool || err "handle_dependencies: !cd uefitool" cd uefitool || err "handle_dependencies: !cd uefitool"
cmake UEFIExtract/ || \ [ ! -f UEFIExtract/Makefile ] || cmake UEFIExtract/ || \
err "handle_dependencies: !cmake UEFIExtract/" err "handle_dependencies: !cmake UEFIExtract/"
) )
fi fi