diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-06-08 18:24:03 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-06-08 18:24:03 +0000 |
commit | 2e8cbe04cdac7b733326b23f72dbfc5b7b2d055c (patch) | |
tree | 3c67fb37e6d746a69f9d22e7ac510ce093b7dd06 /prologue | |
parent | 46eb96ff8eecd4aff7ed1e63ff1b9f1905040f58 (diff) |
Add SHLIB_LIBS=-lncurses to readline install procedure.
Fix an md5sum for eudev manpages.
Fix typos in host requirements script.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10573 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'prologue')
-rw-r--r-- | prologue/hostreqs.xml | 22 |
1 files changed, 11 insertions, 11 deletions
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 ] |