summaryrefslogtreecommitdiffstats
path: root/docs/en/xml/installation.xml
diff options
context:
space:
mode:
authorjake%bugzilla.org <>2008-04-04 13:46:28 +0200
committerjake%bugzilla.org <>2008-04-04 13:46:28 +0200
commit02c7c4fc8d3296c29930f670e429507a4610fbca (patch)
tree9857b4f6763babe8ed7103fcf75669a0bd2ecbb6 /docs/en/xml/installation.xml
parent44ef6c4645867004d30c4d6f8234bd34c97517f8 (diff)
downloadbugzilla-02c7c4fc8d3296c29930f670e429507a4610fbca.tar.gz
bugzilla-02c7c4fc8d3296c29930f670e429507a4610fbca.tar.xz
Bug 194541 - Dot is a binary executable, not a perl script so we don't need to prefix the system call with the perl binary. There are no more system calls of perl scripts in Bugzilla, so this section can go away.
Diffstat (limited to 'docs/en/xml/installation.xml')
-rw-r--r--docs/en/xml/installation.xml38
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml
index 68a911b86..aac479876 100644
--- a/docs/en/xml/installation.xml
+++ b/docs/en/xml/installation.xml
@@ -1094,44 +1094,6 @@ my $webservergid = '8'
</programlisting>
</section>
- <section>
- <title>System Calls</title>
-
- <para>In order to get system calls to work on win32's perl, you need
- to tell the windows shell what interpreter to use. This is done by
- changing the <function>system</function> calls. You will need to
- search all of Bugzilla's code for <function>system</function> calls.
- To tell perl your interpreter, it needs to be the first argument to
- the <function>system</function> call. For example, you'll need to
- change:
- </para>
- <programlisting>
-system("$webdotbase","-Tpng","-o","$pngfilename","$filename");
- </programlisting>
- <para>with</para>
- <programlisting>
-system("C:\\perl\\bin\\perl", "$webdotbase","-Tpng","-o","$pngfilename","$filename");
- </programlisting>
-
- <tip>
- <para>The <command>grep</command> command is very helpful in finding
- these <function>system</function> calls, assuming you have the
- <productname class="trade">cygwin</productname> utilities.
- </para>
- </tip>
-
- <note>
- <para>It appears that the only <function>system</function> call
- remaining in the Bugzilla codebase is in
- <filename>showdependencygraph.cgi</filename>. Not changing this
- file will only cause dependency graphs to not function if the
- <option>webdotbase</option> paramater points to a local
- installation of <ulink url="http://www.graphviz.org">GraphViz</ulink>.
- </para>
- </note>
-
- </section>
-
</section>
<section id="win32-http">