diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2011-10-07 19:16:12 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2011-10-07 19:16:12 +0000 |
commit | 374259a011dd7bdecc2404d627d448dfd0309508 (patch) | |
tree | 60650b7083753599c5f79692a1e0afb5a1c94a3c /chapter06/e2fsprogs.xml | |
parent | 81060b6ada18a2b511d944276c6f318bb818ff79 (diff) |
Remove Pkg-Config and its dependencies PCRE and Glib. Glib's dependencies are becoming too heavyweight for LFS to be incorporating.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9616 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/e2fsprogs.xml')
-rw-r--r-- | chapter06/e2fsprogs.xml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/chapter06/e2fsprogs.xml b/chapter06/e2fsprogs.xml index 75eeb28d4..09a04642d 100644 --- a/chapter06/e2fsprogs.xml +++ b/chapter06/e2fsprogs.xml @@ -52,7 +52,8 @@ cd build</userinput></screen> <para>Prepare E2fsprogs for compilation:</para> -<screen><userinput remap="configure">../configure --prefix=/usr --with-root-prefix="" \ +<screen><userinput remap="configure">PKG_CONFIG=/tools/bin/true LDFLAGS=-lblkid \ + ../configure --prefix=/usr --with-root-prefix="" \ --enable-elf-shlibs --disable-libblkid --disable-libuuid \ --disable-uuidd --disable-fsck</userinput></screen> @@ -60,6 +61,14 @@ cd build</userinput></screen> <title>The meaning of the configure options:</title> <varlistentry> + <term><parameter>PKG_CONFIG...</parameter></term> + <listitem> + <para>This enables E2fsprogs to be built without requiring Pkg-config + to be built and installed first.</para> + </listitem> + </varlistentry> + + <varlistentry> <term><parameter>--with-root-prefix=""</parameter></term> <listitem> <para>Certain programs (such as the <command>e2fsck</command> |