2
0

Fix for building after SDK path changes.

This commit is contained in:
Maarten Billemont 2019-05-29 12:49:49 -04:00
parent 6832c05138
commit dbda20ee8a

View File

@ -110,6 +110,11 @@ prepare_clean() { _prepare_clean "$@"; }
_prepare_clean() {
local prefix=$1 platform=$2; shift 2
if [[ $platform = windows ]]; then :
else
[[ ! -e Makefile ]] || make -s clean || git clean -fdx
fi
rm -rf "$prefix"
install -d "$prefix/out"
}