4 |
## $Id$ |
## $Id$ |
5 |
## -------------------------------------------------------------------------------- |
## -------------------------------------------------------------------------------- |
6 |
## $Log$ |
## $Log$ |
7 |
|
## Revision 1.2 2003/01/20 21:50:49 joko |
8 |
|
## + now utilizing 'org::netfrag::preambel' |
9 |
|
## |
10 |
## Revision 1.1 2003/01/20 21:22:18 joko |
## Revision 1.1 2003/01/20 21:22:18 joko |
11 |
## + initial check-in |
## + initial check-in |
12 |
## calls some scripts at 'perl/scripts/shortcuts' to get a software-package (directory) packaged and published to (in this case) 'http://netfrag.org/~joko/computing/releases/01-snapshots/' |
## calls some scripts at 'perl/scripts/shortcuts' to get a software-package (directory) packaged and published to (in this case) 'http://netfrag.org/~joko/computing/releases/01-snapshots/' |
17 |
use strict; |
use strict; |
18 |
use warnings; |
use warnings; |
19 |
|
|
20 |
# determine and set 'libpath' at runtime, but before execution |
use lib qw( ../libs ); |
21 |
my $libpath; |
use org::netfrag::preambel; |
|
BEGIN { |
|
|
use FindBin qw($Bin); |
|
|
$libpath = "$Bin/../../../libs"; |
|
|
} |
|
|
|
|
|
# use '$libpath' path to look for additional modules |
|
|
use lib $libpath; |
|
22 |
|
|
23 |
|
|
24 |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main |