aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2014-01-27 22:32:09 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2014-01-27 22:32:09 +0000
commit8ad94ab722857c1be1a8357258a18ad2591b921e (patch)
tree3abef6aa42019148a8ac8f016783b74d9908fc77
parentcc2f8a526d71f81c72e880acd33bb0b80bf64b59 (diff)
Add an environment variable to util-linux
in Chapter 5 to prevent an installation error for hosts that have unneeded capabilities availible. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10452 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter01/changelog.xml13
-rw-r--r--chapter05/ncurses.xml3
-rw-r--r--chapter05/util-linux.xml15
-rw-r--r--general.ent4
4 files changed, 27 insertions, 8 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 63551102b..e6eb44116 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -36,7 +36,18 @@
</listitem>
-->
<listitem>
- <para>2014-01-25</para>
+ <para>2014-01-27</para>
+ <itemizedlist>
+ <listitem>
+ <para>[bdubbs] - Add an environment variable to util-linux
+ in Chapter 5 to prevent an installation error for
+ hosts that have unneeded capabilities availible.</para>
+ </listitem>
+ </itemizedlist>
+ </listitem>
+
+ <listitem>
+ <para>2014-01-26</para>
<itemizedlist>
<listitem>
<para>[bdubbs] - Update to man-pages-3.57. Fixes
diff --git a/chapter05/ncurses.xml b/chapter05/ncurses.xml
index 2db0a770c..a18a9c819 100644
--- a/chapter05/ncurses.xml
+++ b/chapter05/ncurses.xml
@@ -45,8 +45,7 @@
<para>Prepare Ncurses for compilation:</para>
-<screen><userinput remap="configure">
-./configure --prefix=/tools \
+<screen><userinput remap="configure">./configure --prefix=/tools \
--with-shared \
--without-debug \
--without-ada \
diff --git a/chapter05/util-linux.xml b/chapter05/util-linux.xml
index 8407f802c..7156895c2 100644
--- a/chapter05/util-linux.xml
+++ b/chapter05/util-linux.xml
@@ -42,9 +42,10 @@
<para>Prepare Util-linux for compilation:</para>
-<screen><userinput remap="configure">./configure --prefix=/tools \
- --disable-makeinstall-chown \
- --without-systemdsystemunitdir</userinput></screen>
+<screen><userinput remap="configure">./configure --prefix=/tools \
+ --disable-makeinstall-chown \
+ --without-systemdsystemunitdir \
+ PKG_CONFIG=""</userinput></screen>
<variablelist>
<title>The meaning of the configure option:</title>
@@ -67,6 +68,14 @@
This switch disables the unnecessary action.</para>
</listitem>
</varlistentry>
+
+ <varlistentry>
+ <term><envar>PKG_CONFIG=""</envar></term>
+ <listitem>
+ <para>Setting this envronment variable prevents adding unneeded
+ features that may be available on the host.</para>
+ </listitem>
+ </varlistentry>
</variablelist>
<para>Compile the package:</para>
diff --git a/general.ent b/general.ent
index 09d820b85..f8329ff18 100644
--- a/general.ent
+++ b/general.ent
@@ -1,5 +1,5 @@
-<!ENTITY version "SVN-20140126">
-<!ENTITY releasedate "January 26, 2014">
+<!ENTITY version "SVN-20140127">
+<!ENTITY releasedate "January 27, 2014">
<!ENTITY copyrightdate "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
<!ENTITY milestone "7.5">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->