updated for perl5 lib path.
authorChris Koeritz <fred@gruntose.com>
Sun, 17 Apr 2016 21:30:36 +0000 (17:30 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 17 Apr 2016 21:30:36 +0000 (17:30 -0400)
scripts/core/variables.sh

index 21f874122e454b71b7ba8c5185fbf9b226dd2207..f8004df59feb1d0e83d93530616dfdf76fcc3b7e 100644 (file)
@@ -152,6 +152,7 @@ if [ -z "$NECHUNG" ]; then
   # variables for perl.
   
   define_yeti_variable PERLLIB+="/usr/lib/perl5"
+  define_yeti_variable PERL5LIB+="/usr/lib/perl5"
   if [ "$OS" == "Windows_NT" ]; then
     define_yeti_variable PERLIO=:perlio
       # choose perl's IO over the ms-windows version so we can handle file
@@ -166,6 +167,7 @@ if [ -z "$NECHUNG" ]; then
       ls $i/*.pl &>/dev/null
       if [ $? -eq 0 ]; then
         PERLLIB+=":$(dos_to_unix_path $i)"
+        PERL5LIB+=":$(dos_to_unix_path $i)"
       fi
     fi
   done