summarylogtreecommitdiffstats
path: root/perlbin.sh
blob: 78c8ed13bb8b11ef4142b968db96add5ba1d0f51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Set path to perl scriptdirs if they exist
# https://wiki.archlinux.org/index.php/Perl_Policy#Binaries_and_scripts
# Added /usr/bin/*_perl dirs for scripts

[ -d /usr/bin/site_perl ] && PATH=$PATH:/usr/bin/site_perl

[ -d /usr/bin/vendor_perl ] && PATH=$PATH:/usr/bin/vendor_perl

[ -d /usr/bin/core_perl ] && PATH=$PATH:/usr/bin/core_perl

export PATH

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