in reply to Re: perl install prefix as an env variable
in thread perl install prefix as an env variable

That is what I have been more or less doing, I'm just wondering if there is a way to do that when running the ./Configure file. ie some way to --prefix=$VARIABLE and have the variable stay through the build and not be substituted (and be an env variable)
  • Comment on Re: Re: perl install prefix as an env variable

Replies are listed 'Best First'.
Re: perl install prefix as an env variable
by jeffenstein (Hermit) on Mar 14, 2002 at 07:03 UTC

    D'oh... Gotta start reading before replying.

    Can you use ./Configure -d -Dprefix=~/perl -Uinstallusrbinperl ??

    Or perhaps ./Configure -d -Dprefix="$ENV_VAR" -Uinstallusrbinperl

    Warning: not tested