From 93afffd7ffec915670278e42a3619f9c0e78d738 Mon Sep 17 00:00:00 2001 From: "barnboy%trilobyte.net" Date: Tue, 20 Nov 2001 17:26:45 +0000 Subject: [PATCH] Modified Win32 notes regarding system() calls per bug 99595. git-svn-id: svn://10.0.0.236/trunk@108590 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/docs/sgml/installation.sgml | 11 ++++++----- mozilla/webtools/bugzilla/docs/xml/installation.xml | 11 ++++++----- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/mozilla/webtools/bugzilla/docs/sgml/installation.sgml b/mozilla/webtools/bugzilla/docs/sgml/installation.sgml index 6c2aeb39efe..9303aa2d3fb 100644 --- a/mozilla/webtools/bugzilla/docs/sgml/installation.sgml +++ b/mozilla/webtools/bugzilla/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/mozilla/webtools/bugzilla/docs/xml/installation.xml b/mozilla/webtools/bugzilla/docs/xml/installation.xml index 6c2aeb39efe..9303aa2d3fb 100644 --- a/mozilla/webtools/bugzilla/docs/xml/installation.xml +++ b/mozilla/webtools/bugzilla/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); +]]>