mirror of https://github.com/dynup/kpatch
livepatch-patch-hook: fix non-rhel builds
Preprocessor doesn't stop unwinding macroses in #if clauses if one of the conditions is false resulting in the following error when trying to build on non-rhel system: patch/livepatch-patch-hook.c:53:48: error: missing binary operator before token "(" RHEL_RELEASE_CODE <= RHEL_RELEASE_VERSION(7, 5)) Fix by using 2 levels of #ifs instead of &&. The same way HAVE_CALLBACKS does. Signed-off-by: Artem Savkov <asavkov@redhat.com>
This commit is contained in:
parent
27accf46ee
commit
355927287d
|
@ -48,10 +48,12 @@
|
|||
#endif
|
||||
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0) && \
|
||||
LINUX_VERSION_CODE <= KERNEL_VERSION(4, 15, 0)) || \
|
||||
(defined(RHEL_RELEASE_CODE) && \
|
||||
RHEL_RELEASE_CODE <= RHEL_RELEASE_VERSION(7, 5))
|
||||
#define HAVE_IMMEDIATE
|
||||
LINUX_VERSION_CODE <= KERNEL_VERSION(4, 15, 0))
|
||||
# define HAVE_IMMEDIATE
|
||||
#elif defined(RHEL_RELEASE_CODE)
|
||||
# if RHEL_RELEASE_CODE <= RHEL_RELEASE_VERSION(7, 5)
|
||||
# define HAVE_IMMEDIATE
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef RHEL_RELEASE_CODE
|
||||
|
|
Loading…
Reference in New Issue