diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-08-26 20:00:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:02:38 -0500 |
commit | 79eb8538741b601b8f65d3bf44263b9415413639 (patch) | |
tree | 6232c7095bc0191fcb53160ada38954f435f090a /source4 | |
parent | f96b1778a42d8388fd1c6384cd7c90b6e4bcd437 (diff) | |
download | samba-79eb8538741b601b8f65d3bf44263b9415413639.tar.gz samba-79eb8538741b601b8f65d3bf44263b9415413639.tar.bz2 samba-79eb8538741b601b8f65d3bf44263b9415413639.zip |
r24675: Specify mode to mkdir, as required by some versions of perl.
(This used to be commit 2a21e69cd334fca7da8997562356e813a20a038f)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/selftest/selftest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/selftest/selftest.pl b/source4/selftest/selftest.pl index b0b53a16f1..3506700f69 100755 --- a/source4/selftest/selftest.pl +++ b/source4/selftest/selftest.pl @@ -717,7 +717,7 @@ if ($opt_format eq "buildfarm") { $msg_ops = new output::plain($opt_verbose, $opt_immediate, $statistics); } elsif ($opt_format eq "html") { require output::html; - mkdir "test-results"; + mkdir("test-results", 0777); $msg_ops = new output::html("test-results", $statistics); } else { die("Invalid output format '$opt_format'"); |