From 80eee1527e5652d5406d6fe7433eeff626c7a45f Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Sat, 8 Oct 2011 20:13:33 +0000 Subject: Correct logic error in console boot script git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9621 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- bootscripts/lfs/init.d/console | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3-54-g00ecf