From 6d2ee674428027c5976a720b3eccf7e8c0bf9059 Mon Sep 17 00:00:00 2001
From: "barnboy%trilobyte.net" <>
Date: Fri, 4 Apr 2008 11:46:01 +0000
Subject: Modified Win32 notes regarding system() calls per bug 99595.
---
docs/en/xml/installation.xml | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
(limited to 'docs/en/xml')
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;
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:
-
-system ("./processmail.pl",@ARGLIST);
+ to
-system ("perl processmail.pl",@ARGLIST);
-
+system ("C:\\perl\\bin\\perl", "processmail", @ARGLIST);
+]]>
--
cgit v1.2.3-24-g4f1b