diff options
author | Andy Dougherty <doughera@lafayette.edu> | 1998-07-06 09:14:37 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-06 23:30:54 +0000 |
commit | 3a6175e10304541293925e263645d3ac0b54f22f (patch) | |
tree | 465f41acde643b279bf50344c1f2ef031fd51ca9 /Policy_sh.SH | |
parent | 8e169608e62d8d83f3c21ba3dafc4efb9ad5e930 (diff) | |
download | perl-3a6175e10304541293925e263645d3ac0b54f22f.tar.gz |
Config_70-01: Remove default "/share"
Message-Id: <Pine.SUN.3.96.980706130959.20719A-100000@newton.phys>
p4raw-id: //depot/perl@1352
Diffstat (limited to 'Policy_sh.SH')
-rw-r--r-- | Policy_sh.SH | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/Policy_sh.SH b/Policy_sh.SH index e25ccc3e91..52a2c57da5 100644 --- a/Policy_sh.SH +++ b/Policy_sh.SH @@ -19,13 +19,6 @@ $startsh # platform-specific hints file. # -#Credits: -# The original design for this Policy.sh file came from Wayne Davison, -# maintainer of trn. -# This version for Perl5.004_61 originally written by -# Andy Dougherty <doughera@lafcol.lafayette.edu>. -# This file may be distributed under the same terms as Perl itself. - # Allow Configure command-line overrides; usually these won't be # needed, but something like -Dprefix=/test/location can be quite # useful for testing out new versions. @@ -57,7 +50,7 @@ esac # out. That way, if you override prefix, all of these will be # automatically adjusted. # -# NOTE: Be especially careful about architecture-dependent and +# WARNING: Be especially careful about architecture-dependent and # version-dependent names, particularly if you reuse this file for # different versions of perl. @@ -81,8 +74,8 @@ for var in bin scriptdir privlib archlib \ ;; privlib) case "$prefix" in - *perl*) dflt=$prefix/lib/$version/share ;; - *) dflt=$prefix/lib/$package/$version/share ;; + *perl*) dflt=$prefix/lib/$version ;; + *) dflt=$prefix/lib/$package/$version ;; esac ;; archlib) @@ -93,8 +86,8 @@ for var in bin scriptdir privlib archlib \ ;; sitelib) case "$prefix" in - *perl*) dflt=$prefix/lib/site_perl/$apiversion/share ;; - *) dflt=$prefix/lib/$package/site_perl/$apiversion/share ;; + *perl*) dflt=$prefix/lib/site_perl/$apiversion ;; + *) dflt=$prefix/lib/$package/site_perl/$apiversion ;; esac ;; sitearch) @@ -150,3 +143,11 @@ $spitshell <<!GROK!THIS! >>Policy.sh # Porting/Glossary. !GROK!THIS! + +#Credits: +# The original design for this Policy.sh file came from Wayne Davison, +# maintainer of trn. +# This version for Perl5.004_61 originally written by +# Andy Dougherty <doughera@lafcol.lafayette.edu>. +# This file may be distributed under the same terms as Perl itself. + |