From b66b4d2713460ab129b1ce020a84c9fea58161f6 Mon Sep 17 00:00:00 2001 From: "jake%bugzilla.org" <> Date: Wed, 2 Apr 2003 09:12:31 +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/sgml/installation.sgml | 38 -------------------------------------- 1 file changed, 38 deletions(-) (limited to 'docs/sgml') diff --git a/docs/sgml/installation.sgml b/docs/sgml/installation.sgml index 68a911b86..aac479876 100644 --- a/docs/sgml/installation.sgml +++ b/docs/sgml/installation.sgml @@ -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