diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2010-02-26 16:38:41 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2010-02-26 16:38:41 +0000 |
commit | 4d2dd2eddd186eb50abc91ef55855ae3a9461c56 (patch) | |
tree | 26a04761214a13ac0f0edcb2e315dbb3a263246e /chapter06 | |
parent | 58e9ccdd6af702540025df9fcdabdd7842757845 (diff) |
Add patch make and another patch to perl
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9204 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/make.xml | 5 | ||||
-rw-r--r-- | chapter06/perl.xml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chapter06/make.xml b/chapter06/make.xml index 791908683..461eab8d4 100644 --- a/chapter06/make.xml +++ b/chapter06/make.xml @@ -40,6 +40,11 @@ <sect2 role="installation"> <title>Installation of Make</title> + <para>First fix some problems that have been identified since + the last package release:</para> + +<screen><userinput remap="pre">patch -Np1 -i ../&make-upstream_fixes-patch;</userinput></screen> + <para>Prepare Make for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen> diff --git a/chapter06/perl.xml b/chapter06/perl.xml index bccbd3ea3..da5d41145 100644 --- a/chapter06/perl.xml +++ b/chapter06/perl.xml @@ -47,6 +47,11 @@ <screen><userinput remap="pre">echo "127.0.0.1 localhost $(hostname)" > /etc/hosts</userinput></screen> + <para>Fix a problem where invalid utf-8 characters cause a segmentation + fault:</para> + +<screen><userinput remap="pre">patch -Np1 -i ../&perl-utf8-patch;</userinput></screen> + <para>This version of Perl now builds the Compress::Raw::Zlib module. By default Perl will use an internal copy of the Zlib source for the build. Issue the following command so that Perl will use the Zlib library |