diff options
-rw-r--r-- | chapter01/changelog.xml | 9 | ||||
-rw-r--r-- | chapter06/readline.xml | 2 | ||||
-rw-r--r-- | packages.ent | 2 | ||||
-rw-r--r-- | prologue/hostreqs.xml | 22 |
4 files changed, 22 insertions, 13 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index f7ee27e50..0d043fb92 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -36,6 +36,15 @@ </listitem> --> <listitem> + <para>2014-06-08</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Add SHLIB_LIBS to readline install command.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2014-06-04</para> <itemizedlist> <listitem> diff --git a/chapter06/readline.xml b/chapter06/readline.xml index dcf5ee065..b17380a98 100644 --- a/chapter06/readline.xml +++ b/chapter06/readline.xml @@ -80,7 +80,7 @@ sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen> <para>Install the package:</para> -<screen><userinput remap="install">make install</userinput></screen> +<screen><userinput remap="install">make SHLIB_LIBS=-lncurses install</userinput></screen> <para>Now move the dynamic libraries to a more appropriate location and fix up some symbolic links:</para> diff --git a/packages.ent b/packages.ent index bcadcb91a..cfda8e61b 100644 --- a/packages.ent +++ b/packages.ent @@ -153,7 +153,7 @@ <!ENTITY eudev-md5 "80649a0350ff9620fc2da9562d9f2a6a"> <!ENTITY eudev-manpages-size "9 KB"> <!ENTITY eudev-manpages-url "&anduin-other;eudev-&eudev-version;-manpages.tar.bz2"> -<!ENTITY eudev-manpages-md5 "eaa5b9af344e958c29288e5376b97a28"> +<!ENTITY eudev-manpages-md5 "9742236280dfc34ba034173efd69f5cf "> <!ENTITY eudev-ch6-du "7.5 MB"> <!ENTITY eudev-ch6-sbu "0.1 SBU"> diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml index 14b010b6a..51b112eb8 100644 --- a/prologue/hostreqs.xml +++ b/prologue/hostreqs.xml @@ -176,19 +176,19 @@ if [ -e /usr/bin/awk ]; then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`"; else echo "awk not found"; fi -gcc - -version | head -n1 -g++ - -version | head -n1 -ldd - -version | head -n1 | cut -d" " -f2- # glibc version -grep - -version | head -n1 -gzip - -version | head -n1 +gcc --version | head -n1 +g++ --version | head -n1 +ldd --version | head -n1 | cut -d" " -f2- # glibc version +grep --version | head -n1 +gzip --version | head -n1 cat /proc/version -m4 - -version | head -n1 -make - -version | head -n1 -patch - -version | head -n1 +m4 --version | head -n1 +make --version | head -n1 +patch --version | head -n1 echo Perl `perl -V:version` -sed - -version | head -n1 -tar - -version | head -n1 -xz - -version | head -n1 +sed --version | head -n1 +tar --version | head -n1 +xz --version | head -n1 echo 'main(){}' > dummy.c && g++ -o dummy dummy.c if [ -x dummy ] |