Author: jelmer
Date: 2007-08-26 20:00:56 +0000 (Sun, 26 Aug 2007)
New Revision: 24675

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24675

Log:
Specify mode to mkdir, as required by some versions of perl.
Modified:
   branches/SAMBA_4_0/
   branches/SAMBA_4_0/source/selftest/selftest.pl


Changeset:

Property changes on: branches/SAMBA_4_0
___________________________________________________________________
Name: bzr:revision-info
...skipped...
Name: bzr:revision-id:v3-trunk0
...skipped...

Modified: branches/SAMBA_4_0/source/selftest/selftest.pl
===================================================================
--- branches/SAMBA_4_0/source/selftest/selftest.pl      2007-08-26 19:58:40 UTC 
(rev 24674)
+++ branches/SAMBA_4_0/source/selftest/selftest.pl      2007-08-26 20:00:56 UTC 
(rev 24675)
@@ -717,7 +717,7 @@
        $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'");

Reply via email to