From f848a2179bc8b73f078046b36a5bec52274f0ab7 Mon Sep 17 00:00:00 2001 From: SergeySlice Date: Sat, 15 May 2021 10:17:45 +0300 Subject: [PATCH] fix buildme by MifJpn Signed-off-by: SergeySlice --- buildme | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/buildme b/buildme index befb13dff..8791ed89c 100755 --- a/buildme +++ b/buildme @@ -543,35 +543,43 @@ select opt in "${options[@]}" do case $opt in "build Clover") - buildClover + checkTools + buildClover break ;; "build Clover with HFSPlus") - buildCloverHFSPlus + checkTools + buildCloverHFSPlus break ;; "make pkg") + checkTools + buildClover buildCCPV BLC buildPkg break ;; "make app") + checkTools buildApp break ;; "make app (with Clover)") + checkTools buildApp withV2 break ;; "make iso") + checkTools buildIso break ;; "build all") + checkTools + buildClover buildCCPV BLC - buildClover buildPkg buildIso buildApp