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

git-svn-id: svn://10.0.0.236/trunk@108590 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
barnboy%trilobyte.net
2001-11-20 17:26:45 +00:00
parent 64144297d3
commit 93afffd7ff
2 changed files with 12 additions and 10 deletions

View File

@@ -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>

View File

@@ -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>