summaryrefslogtreecommitdiffstats
path: root/bashrc
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-05-17 17:35:36 +0100
committerMatthew Lemon <y@yulqen.org>2023-05-17 17:35:36 +0100
commitdaab87b4b4e51fd8144570cfc83445c7d4a78c32 (patch)
treed5a333aea0ad738dac1ad49b14e5f472101f56b5 /bashrc
parentce8fbf563883bae60bc53a157e25d80b83118fb7 (diff)
Adds perl stuff to bashrc
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index a87f0d5..c9ae1ed 100644
--- a/bashrc
+++ b/bashrc
@@ -260,3 +260,9 @@ append_to_masterlist() {
export PATH=~/bin/:$PATH
export PATH=~/.local/bin/:$PATH
export PATH=$PATH:/usr/local/go/bin
+
+PATH="/home/lemon/perl5/bin${PATH:+:${PATH}}"; export PATH;
+PERL5LIB="/home/lemon/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
+PERL_LOCAL_LIB_ROOT="/home/lemon/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
+PERL_MB_OPT="--install_base \"/home/lemon/perl5\""; export PERL_MB_OPT;
+PERL_MM_OPT="INSTALL_BASE=/home/lemon/perl5"; export PERL_MM_OPT;