summaryrefslogtreecommitdiffstats
path: root/abs/core/perl/perlbin.sh
blob: 665d5a8e94f46a5275beb9158ab0f160c443e440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Set path to perl scripts.
# Remove the perlbin dirs in the next release.

# Add dirs to path if they exist.
[ -d /usr/lib/perl5/site_perl/bin ] &&
		PATH=$PATH:/usr/lib/perl5/site_perl/bin
[ -d /usr/bin/perlbin/site ] &&
		PATH=$PATH:/usr/bin/perlbin/site
[ -d /usr/lib/perl5/vendor_perl/bin ] &&
		PATH=$PATH:/usr/lib/perl5/vendor_perl/bin
[ -d /usr/bin/perlbin/vendor ] &&
		PATH=$PATH:/usr/bin/perlbin/vendor
[ -d /usr/lib/perl5/core_perl/bin ] &&
		PATH=$PATH:/usr/lib/perl5/core_perl/bin
export PATH

# If you have modules in non-standard directories you can add them here.
#export PERLLIB=dir1:dir2