Changeset 346
- Timestamp:
- 05/05/04 14:00:13 (5 years ago)
- Files:
-
- 1 modified
-
trunk/TROUBLESHOOTING (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/TROUBLESHOOTING
r319 r346 3 3 4 4 If you wish to install the OpenGuides modules in a private directory, 5 the Module::Build incantation for this is 5 you will need to specify this when you run the Build.PL. 6 7 If you are using version 0.20 of Module::Build, do: 6 8 7 9 perl Build.PL install_path=lib=/path/to/my/modules/ \ 10 install_path=script=/path/to/my/bin/ \ 8 11 install_path=arch=/path/to/my/modules/auto/ \ 9 12 install_path=libdoc=/path/to/my/man/ \ 10 install_path=bindoc=/path/to/my/man/ \ 11 install_path=script=/path/to/my/bin/ # version 0.20 of M::B 13 install_path=bindoc=/path/to/my/man/ 12 14 13 perl Build.PL config='sitelib=/path/to/my/modules/' # version 0.18 of M::B 15 Or for earlier versions of Module::Build, do: 16 17 perl Build.PL config='sitelib=/path/to/my/modules/' 14 18 15 19 ---------------------------------------------------------------------- … … 17 21 If any or all of the modules required by the OpenGuides scripts are in 18 22 a private directory, then you'll need to tell the scripts where to find 19 them. The only way I can seeto do this is to install everything and20 then manually edit the scripts wiki.cgi (or whatever you called it).21 supersearch.cgi and preferences.cgi to include a line somethinglike23 them. At present the only way to do this is to install everything and 24 then manually edit wiki.cgi (or whatever you called it), 25 supersearch.cgi and preferences.cgi to include a line like 22 26 23 27 use lib qw( /path/to/my/modules/ ); 24 28 25 at the top of the scriptsbefore any other modules are required.29 at the top before any other modules are required. 26 30 27 31 ----------------------------------------------------------------------
