summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorRay Donnelly <mingw.android@gmail.com>2013-04-07 16:44:18 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-12 22:43:19 +0200
commit7628e6ed1aa5c2c75db24527fe1945709ea4f28b (patch)
treef4953a77a4747181b00713e237bcef3d250a360f /config.tests
parentd3938c189833c8a7d684096762c16a9097eb6598 (diff)
Android: Handle '<DRIVELETTER>:' in makeabs for Windows usage.
Change-Id: I70de8fe9976a214d143b6174a5d7aebf8e79169b Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'config.tests')
-rwxr-xr-xconfig.tests/unix/makeabs2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.tests/unix/makeabs b/config.tests/unix/makeabs
index c415cc7bda..4df26f769f 100755
--- a/config.tests/unix/makeabs
+++ b/config.tests/unix/makeabs
@@ -11,6 +11,8 @@ fi
if [ `echo $FILE | cut $CUT_ARG` = "/" ]; then
true
+elif [ "$OSTYPE" = "msys" -a -z "${FILE##[a-zA-Z]:[/\\]*}" ]; then
+ true
else
RES="$PWD/$FILE"
test -d "$RES" && RES="$RES/"