aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2010-09-03 17:59:22 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2010-09-03 17:59:22 +0000
commit7fa322a1d3ca389822405e9d4a2609fb4e7f9278 (patch)
tree53205e93b580c70cfcdcee7661c74f43b8a0f233 /chapter06
parent6f8df4bf431eb3e7a10d5a4f00a46db4e9a88460 (diff)
Add sed to stop underquoting an M4 script in pkg-config
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9370 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/pkg-config.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/chapter06/pkg-config.xml b/chapter06/pkg-config.xml
index ceb9581cf..4dd4f36ea 100644
--- a/chapter06/pkg-config.xml
+++ b/chapter06/pkg-config.xml
@@ -42,6 +42,12 @@
<sect2 role="installation">
<title>Installation of Pkg-config</title>
+ <para>First fix a problem with underquoting that shows up in later versions of
+ <command>autoconf</command>:</para>
+
+<screen><userinput remap="pre">sed -i -e 's/XT])dnl/XT])[]dnl/' \
+ -e 's/\.])dnl/\.])[]dnl/' pkg.m4</userinput></screen>
+
<para>Prepare Pkg-config for compilation:</para>
<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>