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); +]]>