diff options
Diffstat (limited to 'linux')
-rw-r--r-- | linux/Makefile.kernel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/Makefile.kernel b/linux/Makefile.kernel index 5f79e430..e5abd4d3 100644 --- a/linux/Makefile.kernel +++ b/linux/Makefile.kernel @@ -23,7 +23,7 @@ BELOW25 := $(shell if [ $(PATCHLEVEL) -lt 5 ]; then echo y; fi) # There were major build changes starting with 2.5.52 ifneq ($(BELOW25),y) -BELOW2552 := $(shell if [ $(SUBLEVEL) -lt 52 ]; then echo y; fi) +BELOW2552 := $(shell if [ $(PATCHLEVEL) -eq 5 -a $(SUBLEVEL) -lt 52 ]; then echo y; fi) else BELOW2552 := y endif |