diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-02-22 14:51:19 +0000 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-02-22 14:51:19 +0000 |
commit | 104b6966e080bb1db112c0c935a5bc3063a73ab5 (patch) | |
tree | 158862a2b61ef50ab7cf1c839842d356f169eb60 /setup-dev-environment.bash | |
parent | 6d4dbdb7bfa1af7c1a34c57fe01198e861fb4b4a (diff) |
add perllib to perl path in setup env script
Diffstat (limited to 'setup-dev-environment.bash')
-rw-r--r-- | setup-dev-environment.bash | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/setup-dev-environment.bash b/setup-dev-environment.bash index eea55431e..cfac196d4 100644 --- a/setup-dev-environment.bash +++ b/setup-dev-environment.bash @@ -3,6 +3,9 @@ # Set the Perl environment variables as needed eval $(perl -Iperllib -Mlocal::lib=local-lib5) +# add the non-standard perllib path to PERL5LIB +PERL5LIB=perllib:$PERL5LIB + # put a note in the promp so that we know environment is setup PS1="(fms) $PS1" |