diff options
author | Karlson2k <k2k@narod.ru> | 2016-02-21 15:48:10 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-02-22 00:07:32 +0100 |
commit | 527e86b0548938fa70d98117d94f84050ade09c7 (patch) | |
tree | 6c86b50d796cefb88290464bd9f75fb11fe058ad /tests/runtests.pl | |
parent | 2ac3f427f77204c99d1412523670e8606aff821e (diff) | |
download | curl-527e86b0548938fa70d98117d94f84050ade09c7.tar.gz |
runtests: Fixed usage of %PWD on MinGW64
Closes #672
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 3f4fbbd44..ba9fd9599 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2311,7 +2311,7 @@ sub checksystem { $curl =~ s/^(.*)(libcurl.*)/$1/g; $libcurl = $2; - if($curl =~ /mingw32/) { + if($curl =~ /mingw(32|64)/) { # This is a windows minw32 build, we need to translate the # given path to the "actual" windows path. The MSYS shell # has a builtin 'pwd -W' command which converts the path. |