From: jake%bugzilla.org <>
Date: Fri, 4 Apr 2008 11:46:28 +0000 (+0000)
Subject: Bug 194541 - Dot is a binary executable, not a perl script so we don't need to prefix...
X-Git-Tag: bugzilla-3.1.3~213
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02c7c4fc8d3296c29930f670e429507a4610fbca;p=thirdparty%2Fbugzilla.git
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.
---
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml
index 68a911b86a..aac479876a 100644
--- a/docs/en/xml/installation.xml
+++ b/docs/en/xml/installation.xml
@@ -1094,44 +1094,6 @@ my $webservergid = '8'
-
- System Calls
-
- 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 system calls. You will need to
- search all of Bugzilla's code for system calls.
- To tell perl your interpreter, it needs to be the first argument to
- the system call. For example, you'll need to
- change:
-
-
-system("$webdotbase","-Tpng","-o","$pngfilename","$filename");
-
- with
-
-system("C:\\perl\\bin\\perl", "$webdotbase","-Tpng","-o","$pngfilename","$filename");
-
-
-
- The grep command is very helpful in finding
- these system calls, assuming you have the
- cygwin utilities.
-
-
-
-
- It appears that the only system call
- remaining in the Bugzilla codebase is in
- showdependencygraph.cgi. Not changing this
- file will only cause dependency graphs to not function if the
- paramater points to a local
- installation of GraphViz.
-
-
-
-
-