Commit 6d2ee674 authored by barnboy%trilobyte.net's avatar barnboy%trilobyte.net

Modified Win32 notes regarding system() calls per bug 99595.

parent e7106609
......@@ -1736,14 +1736,15 @@ exit;
<step>
<para>
Modify the invocation of all system() calls in all perl
scripts in your Bugzilla directory. For instance, change
scripts in your Bugzilla directory. You should specify the
full path to perl for each system() call. For instance, change
this line in processmail:
<programlisting>
system ("./processmail.pl",@ARGLIST);
<programlisting><![CDATA[
system ("./processmail",@ARGLIST);
</programlisting> to
<programlisting>
system ("perl processmail.pl",@ARGLIST);
</programlisting>
system ("C:\\perl\\bin\\perl", "processmail", @ARGLIST);
]]> </programlisting>
</para>
</step>
<step>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment