This commit is contained in:
tTh 2023-07-03 00:14:22 +02:00
parent 5c59dc7ef7
commit 0a5f58867c
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
function build function build
{ {
echo ============= $1 ============== echo "============= $1 =============="
curdir=${PWD} curdir=${PWD}
cd $1 cd $1
make make
@ -13,7 +13,7 @@ cd ${curdir}
if [ ${error} -ne 0 ] if [ ${error} -ne 0 ]
then then
echo === error on $1 = ${error} echo "=== error on $1 = ${error}"
exit 1 exit 1
fi fi
} }
@ -28,7 +28,7 @@ build Fonderie
# ------------------------------------------------------------------ # ------------------------------------------------------------------
echo "========== Project root ==============="
make make
# ------------------------------------------------------------------ # ------------------------------------------------------------------