From e0160b3eaf892ee4593ceb3f8206166a4dfa755c Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Wed, 9 Jul 2008 15:40:57 +0100 Subject: [PATCH] Fix syntax error in --ignore-system-defaults handling. Signed-off-by: Chris Lamb --- helpers/lh_config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/lh_config b/helpers/lh_config index d4a100981..310c7caf3 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -659,7 +659,7 @@ Local_arguments () } # Reading system configuration -if [ -f "${SYSTEM_LH_CONFFILE}" ] && if ! In_list "--ignore-system-defaults" "${@}" +if [ -f "${SYSTEM_LH_CONFFILE}" ] && ! In_list "--ignore-system-defaults" "${@}" then Echo_message "Using system defaults from ${SYSTEM_LH_CONFFILE}" Read_conffile "${SYSTEM_LH_CONFFILE}"