From: barnboy%trilobyte.net <>
Date: Wed, 21 Nov 2001 01:26:45 +0000 (+0000)
Subject: Modified Win32 notes regarding system() calls per bug 99595.
X-Git-Tag: bugzilla-2.16rc1~311
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=343391259b142f1dcca74b8122b9af87104a2432;p=thirdparty%2Fbugzilla.git
Modified Win32 notes regarding system() calls per bug 99595.
---
diff --git a/docs/sgml/installation.sgml b/docs/sgml/installation.sgml
index 6c2aeb39ef..9303aa2d3f 100644
--- a/docs/sgml/installation.sgml
+++ b/docs/sgml/installation.sgml
@@ -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);
+]]>
diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml
index 6c2aeb39ef..9303aa2d3f 100644
--- a/docs/xml/installation.xml
+++ b/docs/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);
+]]>