Fix Testrunner path for Cygwin x86_64

Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
FrancisANDRE 2015-08-18 11:31:26 +02:00
parent b7f6870cef
commit 76e9d2bf02

View File

@ -18,6 +18,14 @@ components=`cat $POCO_BASE/components`
if [ "$OSNAME" = "" ] ; then
OSNAME=`uname`
case $OSNAME in
CYGWIN*)
OSNAME=CYGWIN
TESTRUNNER=$TESTRUNNER.exe
;;
MINGW*)
OSNAME=MinGW ;;
esac
fi
if [ "$OSARCH" = "" ] ; then
OSARCH=`uname -m | tr ' /' _-`