]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Modified Win32 notes regarding system() calls per bug 99595.
authorbarnboy%trilobyte.net <>
Wed, 21 Nov 2001 01:26:45 +0000 (01:26 +0000)
committerbarnboy%trilobyte.net <>
Wed, 21 Nov 2001 01:26:45 +0000 (01:26 +0000)
docs/sgml/installation.sgml
docs/xml/installation.xml

index 6c2aeb39efedaf70c29231e602430974071ab7de..9303aa2d3fb9eab70c474fcff231f2c5d3263dce 100644 (file)
@@ -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>
index 6c2aeb39efedaf70c29231e602430974071ab7de..9303aa2d3fb9eab70c474fcff231f2c5d3263dce 100644 (file)
@@ -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>