Make sure $webguiRoot is setup consistently in all utility scripts.
Some scripts had a hardcoded use lib "../lib" and "../.." on Session/Config method calls. This was changed to a BEGIN prologue where @INC gets $webguiRoot added, and the method calls use $webguiRoot instead. This eases the creation of patches for filesystem reorganization of the installed files (e.g. for Debian packages).
This commit is contained in:
parent
8dc4216edd
commit
8be24aec80
8 changed files with 59 additions and 17 deletions
|
|
@ -8,6 +8,13 @@
|
|||
# http://www.plainblack.com info@plainblack.com
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
our ($webguiRoot);
|
||||
|
||||
BEGIN {
|
||||
$webguiRoot = "..";
|
||||
unshift (@INC, $webguiRoot."/lib");
|
||||
}
|
||||
|
||||
#-----------------------------------------
|
||||
# A little utility to generate WebGUI
|
||||
# thumbnails.
|
||||
|
|
@ -32,7 +39,6 @@ BEGIN {
|
|||
}
|
||||
}
|
||||
|
||||
use lib "../lib";
|
||||
use WebGUI::Utility;
|
||||
|
||||
my $thumbnailSize;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue