Skip to content

Commit

Permalink
Properly build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliomoro committed Oct 9, 2019
1 parent c8894ce commit 98ca4c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/chroot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ update-alternatives --install /usr/bin/clang clang `which clang-3.9` 100

echo "~~~~ Installing Bela ~~~~"
cd /root/Bela
for DIR in resources/tools/*
do make -C "$DIR" install
for DIR in resources/tools/*; do
[ -d "$DIR" ] && { make -C "$DIR" install || exit 1; }
done

make nostartup
Expand Down

0 comments on commit 98ca4c0

Please sign in to comment.