summaryrefslogtreecommitdiffstats
path: root/docs/en/xml/installation.xml
diff options
context:
space:
mode:
authorbarnboy%trilobyte.net <>2008-04-04 13:46:01 +0200
committerbarnboy%trilobyte.net <>2008-04-04 13:46:01 +0200
commit6d2ee674428027c5976a720b3eccf7e8c0bf9059 (patch)
tree4fa5e90286913a8f287e3049300fa622831bfbd7 /docs/en/xml/installation.xml
parente710660935b0a694612250c4da8b37394a16f853 (diff)
downloadbugzilla-6d2ee674428027c5976a720b3eccf7e8c0bf9059.tar.gz
bugzilla-6d2ee674428027c5976a720b3eccf7e8c0bf9059.tar.xz
Modified Win32 notes regarding system() calls per bug 99595.
Diffstat (limited to 'docs/en/xml/installation.xml')
-rw-r--r--docs/en/xml/installation.xml11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml
index 6c2aeb39e..9303aa2d3 100644
--- a/docs/en/xml/installation.xml
+++ b/docs/en/xml/installation.xml
@@ -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>