From b09c490633bc1a1b259db15f6f9251fa6ff5dbce Mon Sep 17 00:00:00 2001 From: short <> Date: Wed, 19 Jun 2002 17:04:36 +0000 Subject: [PATCH] Fixed missing $PERLLIB includes in "make test" run from CPAN --- .bashrc | 2 +- bin/perlilib | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 bin/perlilib diff --git a/.bashrc b/.bashrc index 325758b..12b2b86 100644 --- a/.bashrc +++ b/.bashrc @@ -59,7 +59,7 @@ export IGNOREEOF=10 export TMOUT=900 export EDITOR='vim' export LC_CTYPE=cs_CZ.ISO-8859-2 -export PERL_MM_OPT="PREFIX=$HOME" +export PERL_MM_OPT="PERL=$HOME/bin/perlilib PREFIX=$HOME" export WWW_HOME="file:///home/short/.bookmarks.html" export GREP_OPTIONS="--binary-files=without-match --directories=skip" [ -n "$PS1" ] && export PS1="`echo -en '\017'`$PS1" # set only in interactive sessions diff --git a/bin/perlilib b/bin/perlilib new file mode 100755 index 0000000..abe21ba --- /dev/null +++ b/bin/perlilib @@ -0,0 +1,5 @@ +#! /bin/sh +# +# $Id$ + +exec /usr/bin/perl`echo ":$PERLLIB"|sed 's/:/ -I/g'` "$@" -- 1.8.3.1