diff options
author | barnboy%trilobyte.net <> | 2001-11-21 02:26:45 +0100 |
---|---|---|
committer | barnboy%trilobyte.net <> | 2001-11-21 02:26:45 +0100 |
commit | 343391259b142f1dcca74b8122b9af87104a2432 (patch) | |
tree | 03dfe791d0d19d68b60f5ed3c4bf0d5dd54c2b08 /docs | |
parent | e80f9becf175d8e902d80df3665514f52340de00 (diff) | |
download | bugzilla-343391259b142f1dcca74b8122b9af87104a2432.tar.gz bugzilla-343391259b142f1dcca74b8122b9af87104a2432.tar.xz |
Modified Win32 notes regarding system() calls per bug 99595.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sgml/installation.sgml | 11 | ||||
-rw-r--r-- | docs/xml/installation.xml | 11 |
2 files changed, 12 insertions, 10 deletions
diff --git a/docs/sgml/installation.sgml b/docs/sgml/installation.sgml index 6c2aeb39e..9303aa2d3 100644 --- a/docs/sgml/installation.sgml +++ b/docs/sgml/installation.sgml @@ -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> diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index 6c2aeb39e..9303aa2d3 100644 --- a/docs/xml/installation.xml +++ b/docs/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> |