diff options
-rw-r--r-- | src/compat/compat-asm.h | 2 | ||||
-rw-r--r-- | src/compat/compat.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/compat/compat-asm.h b/src/compat/compat-asm.h index 7067afd..fde21da 100644 --- a/src/compat/compat-asm.h +++ b/src/compat/compat-asm.h @@ -15,7 +15,7 @@ #define ISRHEL7 #elif RHEL_MAJOR == 8 #define ISRHEL8 -#if RHEL_MINOR == 4 +#if RHEL_MINOR >= 4 #define ISCENTOS8S #endif #endif diff --git a/src/compat/compat.h b/src/compat/compat.h index 0227204..26a6d7e 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -16,7 +16,7 @@ #define ISRHEL7 #elif RHEL_MAJOR == 8 #define ISRHEL8 -#if RHEL_MINOR == 4 +#if RHEL_MINOR >= 4 #define ISCENTOS8S #endif #endif |