diff options
author | Ken Moffat <ken@linuxfromscratch.org> | 2020-08-10 10:29:25 +0000 |
---|---|---|
committer | Ken Moffat <ken@linuxfromscratch.org> | 2020-08-10 10:29:25 +0000 |
commit | 9b9db38c2f9cc31e7976e7d2742adb0b45ee317c (patch) | |
tree | 6a59426b1c13a88891b8b191448ce0532dcdf8d2 /chapter07 | |
parent | 26c54f9e3d2882daa3fee3e059da9c419b5ac71f (diff) |
Change perl to not install modules from LFS and BLFS into /usr/share.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@12017 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r-- | chapter07/perl.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/chapter07/perl.xml b/chapter07/perl.xml index b7d80b3b6..1c8a72d5a 100644 --- a/chapter07/perl.xml +++ b/chapter07/perl.xml @@ -45,15 +45,15 @@ <para>Prepare Perl for compilation:</para> - <screen><userinput remap="configure">sh Configure -des \ - -Dprefix=/usr \ - -Dvendorprefix=/usr \ - -Dprivlib=/usr/share/perl5/core_perl \ - -Darchlib=/usr/lib/perl5/&perl-version-min;/core_perl \ - -Dsitelib=/usr/share/perl5/site_perl \ - -Dsitearch=/usr/lib/perl5/&perl-version-min;/site_perl \ - -Dvendorlib=/usr/share/perl5/vendor_perl \ - -Dvendorarch=/usr/lib/perl5/&perl-version-min;/vendor_perl</userinput></screen> + <screen><userinput remap="configure">sh Configure -des \ + -Dprefix=/usr \ + -Dvendorprefix=/usr \ + -Dprivlib=/usr/lib/perl5/5.32/core_perl \ + -Darchlib=/usr/lib/perl5/5.32/core_perl \ + -Dsitelib=/usr/lib/perl5/5.32/site_perl \ + -Dsitearch=/usr/lib/perl5/5.32/site_perl \ + -Dvendorlib=/usr/lib/perl5/5.32/vendor_perl \ + -Dvendorarch=/usr/lib/perl5/5.32/vendor_perl</userinput></screen> <variablelist> <title>The meaning of the new Configure options:</title> |