26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
--- bugzilla-3.2.2/Bugzilla/Constants.pm 2009-02-03 10:02:53.000000000 +0000
|
|
+++ bugzilla-3.2.2-rw/Bugzilla/Constants.pm 2009-02-18 17:59:52.000000000 +0000
|
|
@@ -465,9 +465,9 @@
|
|
'cgi_path' => $libpath,
|
|
'templatedir' => "$libpath/template",
|
|
'project' => $project,
|
|
- 'localconfig' => "$libpath/$localconfig",
|
|
- 'datadir' => "$libpath/$datadir",
|
|
- 'attachdir' => "$libpath/$datadir/attachments",
|
|
+ 'localconfig' => "/etc/bugzilla/$localconfig",
|
|
+ 'datadir' => "/var/lib/bugzilla/$datadir",
|
|
+ 'attachdir' => "/var/lib/bugzilla/$datadir/attachments",
|
|
'skinsdir' => "$libpath/skins",
|
|
# $webdotdir must be in the web server's tree somewhere. Even if you use a
|
|
# local dot, we output images to there. Also, if $webdotdir is
|
|
@@ -475,8 +475,8 @@
|
|
# change showdependencygraph.cgi to set image_url to the correct
|
|
# location.
|
|
# The script should really generate these graphs directly...
|
|
- 'webdotdir' => "$libpath/$datadir/webdot",
|
|
- 'extensionsdir' => "$libpath/extensions",
|
|
+ 'webdotdir' => "/var/lib/bugzilla/$datadir/webdot",
|
|
+ 'extensionsdir' => "/var/lib/bugzilla/extensions",
|
|
};
|
|
}
|
|
|