aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2012-07-11 03:22:40 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2012-07-11 03:22:40 +0000
commit13b63d7f6b3f9432917e5c506697c5170c8e4a5e (patch)
treeaa55efdb2dfac977efe8d2e6a13ed3f45e7e507d /chapter06
parentd1f5838a4171ed80cc484a5125b8f301c6022110 (diff)
Specify PKG_CONFIG_PATH for libpipeline checks
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9897 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/libpipeline.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/chapter06/libpipeline.xml b/chapter06/libpipeline.xml
index e3e248760..d9ecf4e55 100644
--- a/chapter06/libpipeline.xml
+++ b/chapter06/libpipeline.xml
@@ -43,21 +43,21 @@
<para>Prepare Libpipeline for compilation:</para>
-<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
-<!--
+<screen><userinput remap="configure">PKG_CONFIG_PATH=/tools/lib/pkgconfig ./configure --prefix=/usr</userinput></screen>
+
<variablelist>
<title>The meaning of the configure options:</title>
<varlistentry>
- <term><parameter>CHECK_CFLAGS=, CHECK_LIBS=</parameter></term>
+ <term><parameter>PKG_CONFIG_PATH</parameter></term>
<listitem>
- <para>These environment variables specify the location of the test
- library built in <xref linkend="ch-tools-check"/>.</para>
+ <para>Use pkg-config to obtain the location of the test
+ library metadata built in <xref linkend="ch-tools-check"/>.</para>
</listitem>
</varlistentry>
</variablelist>
--->
+
<para>Compile the package:</para>
<screen><userinput remap="make">make</userinput></screen>