diff options
author | Prymmer/Kahn <pvhp@best.com> | 2001-09-03 06:43:04 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-04 12:46:30 +0000 |
commit | fe05d1a7f63cf11414017abdc1edd6615d080183 (patch) | |
tree | b2d1a20be8bc8f208ed06be296fb891e78b3d252 | |
parent | 97458a6ff67bc5a554449c1abcbdf1ad7278b72f (diff) | |
download | perl-fe05d1a7f63cf11414017abdc1edd6615d080183.tar.gz |
s/ROOT\./_ROOT./ for VMS default install prefix appendage
Message-ID: <Pine.BSF.4.21.0109031338300.5068-100000@shell8.ba.best.com>
p4raw-id: //depot/perl@11860
-rw-r--r-- | README.vms | 4 | ||||
-rw-r--r-- | configure.com | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/README.vms b/README.vms index 2aa9fb044f..259e04e3f0 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 f147e0e519..6d5add8488 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. |