From 02c7c4fc8d3296c29930f670e429507a4610fbca Mon Sep 17 00:00:00 2001 From: "jake%bugzilla.org" <> Date: Fri, 4 Apr 2008 11:46:28 +0000 Subject: 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. --- docs/en/xml/installation.xml | 38 -------------------------------------- 1 file changed, 38 deletions(-) (limited to 'docs/en') 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' -
- 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. - - - -
-
-- cgit v1.2.3-24-g4f1b