From: Prymmer/Kahn Date: Mon, 3 Sep 2001 13:43:04 +0000 (-0700) Subject: s/ROOT\./_ROOT./ for VMS default install prefix appendage X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe05d1a7f63cf11414017abdc1edd6615d080183;p=p5sagit%2Fp5-mst-13.2.git s/ROOT\./_ROOT./ for VMS default install prefix appendage Message-ID: p4raw-id: //depot/perl@11860 --- diff --git a/README.vms b/README.vms index 2aa9fb0..259e04e 100644 --- a/README.vms +++ b/README.vms @@ -197,7 +197,7 @@ non-default location for where Perl will be installed: @ Configure "-d" "-Dprefix=dka100:[utils.perl5.]" Note that the installation location would be by default where you unpacked -the source with a "ROOT." appended. For example if you unpacked the perl +the source with a "_ROOT." appended. For example if you unpacked the perl source into: DKA200:[PERL-5_10_2...] @@ -205,7 +205,7 @@ source into: Then the PERL_SETUP.COM that gets written out by Configure.com will try to DEFINE your installation PERL_ROOT to be: - DKA200:[PERL-5_10_2ROOT.] + DKA200:[PERL-5_10_2_ROOT.] More help with configure.com is available from: diff --git a/configure.com b/configure.com index f147e0e..6d5add8 100644 --- a/configure.com +++ b/configure.com @@ -1134,8 +1134,8 @@ $ THEN $ prefix = F$ENVIRONMENT("DEFAULT") - ".UU]" + "]" $ prefix = F$PARSE(prefix,,,,"NO_CONCEAL") - "][" - ".;" $ prefixbase = prefix - "]" -$! Add ROOT to make install PERL_ROOT differ from build directory. -$ prefix = prefixbase + "ROOT.]" +$! Add _ROOT to make install PERL_ROOT differ from build directory. +$ prefix = prefixbase + "_ROOT.]" $ ENDIF $ src = prefix $!: determine root of directory hierarchy where package will be installed.