summaryrefslogtreecommitdiff
path: root/devel/p5-FindBin-libs/DESCR
blob: 69581393f8e4c80f9621f14ae66bb4e7c2afbc01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
An all-too-common occurrance managing perly projects is being unable
to install new modules becuse "it might break things", and being
unable to test them because you can't install them. The usual outcome
of this is a collection of hard-coded

    use lib qw( /usr/local/projectX ... )

code at the top of each #! file that has to be updated by hand for
each new project.

To get away from this you'll often see relative paths for the lib's,
which require running the code from one specific place. All this
does is push the hard-coding into cron, shell wrappers, and begin
blocks.

With FindBin::libs you need suffer no more.