makedist.midori: Warn if MINGW_PREFIX variable is not set

This commit is contained in:
Paweł Forysiuk 2012-02-09 00:14:16 +01:00 committed by Christian Dywan
parent 93b352aa34
commit f387f9c29b

View file

@ -23,6 +23,11 @@
# a bit of configuration
root_dir=$MINGW_PREFIX
if [ "$MINGW_PREFIX" == "" ]; then
echo "Warning!. MING_PREFIX variable is empty!"
sleep 5s
fi
# create temporary working directory
temp_dir=`mktemp -d`