2019-08-13 13:58:29 +00:00
|
|
|
# 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
|
|
|
|
|
2020-09-24 22:48:40 +00:00
|
|
|
[ -d /usr/bin/site_perl ] && append_path '/usr/bin/site_perl'
|
2019-08-13 13:58:29 +00:00
|
|
|
|
2020-09-24 22:48:40 +00:00
|
|
|
[ -d /usr/bin/vendor_perl ] && append_path '/usr/bin/vendor_perl'
|
2019-08-13 13:58:29 +00:00
|
|
|
|
2020-09-24 22:48:40 +00:00
|
|
|
[ -d /usr/bin/core_perl ] && append_path '/usr/bin/core_perl'
|
2019-08-13 13:58:29 +00:00
|
|
|
|
|
|
|
export PATH
|
|
|
|
|
|
|
|
# If you have modules in non-standard directories you can add them here.
|
|
|
|
#export PERLLIB=dir1:dir2
|
|
|
|
|