diff options
-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- |