diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2011-10-08 20:13:33 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2011-10-08 20:13:33 +0000 |
commit | 80eee1527e5652d5406d6fe7433eeff626c7a45f (patch) | |
tree | b71b95f0f2f4060e8477cc9ba31f9ab03ed79ded | |
parent | 01c7ffe8c1b0c187d53b6e98039b0d553625c213 (diff) |
Correct logic error in console boot script
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9621 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | bootscripts/lfs/init.d/console | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootscripts/lfs/init.d/console b/bootscripts/lfs/init.d/console index 8740bec4f..8476290d5 100644 --- a/bootscripts/lfs/init.d/console +++ b/bootscripts/lfs/init.d/console @@ -40,7 +40,7 @@ function is_true() # See if we need to do anything if [ -z "${KEYMAP}" ] && [ -z "${KEYMAP_CORRECTIONS}" ] && [ -z "${FONT}" ] && [ -z "${LEGACY_CHARSET}" ] && - is_true "${UNICODE}"; then + ! is_true "${UNICODE}"; then exit 0 fi |