mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-25 15:41:31 -05:00
use name of dir to report errors instead of archive name
This commit is contained in:
parent
958eb2bae6
commit
334b3ab083
4
dkarm-eabi/scripts/build-tools.sh
Normal file → Executable file
4
dkarm-eabi/scripts/build-tools.sh
Normal file → Executable file
|
|
@ -10,11 +10,11 @@ do
|
||||||
touch configured
|
touch configured
|
||||||
fi
|
fi
|
||||||
if [ ! -f built ]; then
|
if [ ! -f built ]; then
|
||||||
$MAKE || { echo "error building $archive"; exit 1; }
|
$MAKE || { echo "error building $dir"; exit 1; }
|
||||||
touch built
|
touch built
|
||||||
fi
|
fi
|
||||||
if [ ! -f installed ]; then
|
if [ ! -f installed ]; then
|
||||||
$MAKE install || { echo "error installing $archive"; exit 1; }
|
$MAKE install || { echo "error installing $dir"; exit 1; }
|
||||||
touch installed
|
touch installed
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user