diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-09 18:22:57 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-03-09 18:22:57 +0000 |
commit | 59eb4f80181749c8d2e0164a643edf4ad36b9318 (patch) | |
tree | 3e635e976e2eb981a112995cef495cba6645f938 /src | |
parent | 702b9bdac5d55568de8a4f8fee8712e24605b6cc (diff) | |
download | bootloader-theme-59eb4f80181749c8d2e0164a643edf4ad36b9318.tar bootloader-theme-59eb4f80181749c8d2e0164a643edf4ad36b9318.tar.gz bootloader-theme-59eb4f80181749c8d2e0164a643edf4ad36b9318.tar.bz2 bootloader-theme-59eb4f80181749c8d2e0164a643edf4ad36b9318.tar.xz bootloader-theme-59eb4f80181749c8d2e0164a643edf4ad36b9318.zip |
Fix detection of 64 bit installation attempts on 32 bit machines
64bit returns an int, not a bool, thus 64bit not is not what you expect:
it's a bitwise negation, not a logic negation of 64bit return value
Diffstat (limited to 'src')
-rw-r--r-- | src/common.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common.inc b/src/common.inc index cc7f282..47d7e24 100644 --- a/src/common.inc +++ b/src/common.inc @@ -537,8 +537,7 @@ syslinux { 32+64bit_source not { - - 64bit not 64bit_source and { + 64bit 64bit_source not or not { notimeout 64bit_popup } if |