diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2008-10-21 20:32:15 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2008-10-21 20:32:15 +0000 |
commit | b772130d04f4dfd2933cfa30ff4bea3ea18dce35 (patch) | |
tree | 40a021f6bdbcef73347d820f0c5c8b424fe47e85 /chapter06 | |
parent | 46fbbc269c35aee5501acd7c58c4e4932b4ec013 (diff) |
Added ac_cv_func_working_mktime=yes to the configure commands in gawk and bash
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8690 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/bash.xml | 2 | ||||
-rw-r--r-- | chapter06/gawk.xml | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/chapter06/bash.xml b/chapter06/bash.xml index 668071223..59ede3798 100644 --- a/chapter06/bash.xml +++ b/chapter06/bash.xml @@ -55,7 +55,7 @@ sed -i "s|htmldir = @htmldir@|htmldir = /usr/share/doc/bash-&bash-version;|" \ <para>Prepare Bash for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr --bindir=/bin \ - --without-bash-malloc --with-installed-readline</userinput></screen> + --without-bash-malloc --with-installed-readline ac_cv_func_working_mktime=yes</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> diff --git a/chapter06/gawk.xml b/chapter06/gawk.xml index 04ee8ae5b..f8d63fca2 100644 --- a/chapter06/gawk.xml +++ b/chapter06/gawk.xml @@ -42,7 +42,8 @@ <para>Prepare Gawk for compilation:</para> -<screen><userinput remap="configure">./configure --prefix=/usr --libexecdir=/usr/lib</userinput></screen> +<screen><userinput remap="configure">./configure --prefix=/usr --libexecdir=/usr/lib \ + ac_cv_func_working_mktime=yes</userinput></screen> <para>Compile the package:</para> |