diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2015-12-19 16:56:02 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2015-12-19 16:56:02 +0000 |
commit | 57682447175329fc9fee70eeb002e8d32b080a58 (patch) | |
tree | 30ac01e8c8ccc2ef638a342be3b3925ab37ebca2 | |
parent | 30216f981462028f83a8ecf2395639ad1f5345c0 (diff) |
Typo in host requirements script
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10978 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | prologue/hostreqs.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml index 8b88d752d..c52f81e0f 100644 --- a/prologue/hostreqs.xml +++ b/prologue/hostreqs.xml @@ -165,7 +165,7 @@ export LC_ALL=C bash --version | head -n1 | cut -d" " -f2-4 MYSH=$(readlink -f /bin/sh) echo "/bin/sh -> $MYSH" -echo $MYSH | grep -qv bash || echo "ERROR: /bin/sh does not point to bash" +echo $MYSH | grep -q bash || echo "ERROR: /bin/sh does not point to bash" unset MYSH echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3- |