diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-24 21:28:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-24 21:28:31 +0000 |
commit | 0d6d9af7abae18000dd8d974708d1881a9b1bd06 (patch) | |
tree | 3304f55c11e0ae2b411907de282a823dfc6e40d7 /tests | |
parent | 41cd36b8306a7684898102acf8cf6d2233ed6a82 (diff) |
Tor Arntsen's mkdir-fix to make this run with perl 5.0005
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testcurl.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 0d9a1428e..89b47f60c 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -212,7 +212,7 @@ rmtree "buildlog-*"; foreach (glob("$CURLDIR/buildlog-*")) { unlink $_; } # create a dir to build in -mkdir $build; +mkdir $build, 0777; if (-d $build) { logit "build dir $build was created fine"; |