diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:05:14 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:27 +0100 |
commit | 2092d8026e740ba9f619f299596096c96b338ab1 (patch) | |
tree | fa263fab11bb452e4d9ea577656e8dd2389e58d4 /helpers | |
parent | d8fa31c4b7e0dacec602bbdc043357dd77faf589 (diff) | |
download | live-build-2092d8026e740ba9f619f299596096c96b338ab1.zip live-build-2092d8026e740ba9f619f299596096c96b338ab1.tar.gz |
Adding check for 'none', not just 'disabled'.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_memtest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_binary_memtest b/helpers/lh_binary_memtest index 2985285..946729b 100755 --- a/helpers/lh_binary_memtest +++ b/helpers/lh_binary_memtest @@ -33,7 +33,7 @@ Read_conffile config/source Read_conffile "${LH_CONFIG}" Set_defaults -if [ "${LH_MEMTEST}" = "disabled" ] +if [ "${LH_MEMTEST}" = "disabled" ] || [ "${LH_MEMTEST}" = "none" ] then exit 0 fi |