Changeset 69563 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Nov 3, 2017 2:32:12 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118912
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/Makefile.module.kms
r69500 r69563 22 22 include $(obj)/Makefile.include.header 23 23 24 BUILD = 124 BUILD = 25 25 26 # We want to build on Linux 3.11 and later , plus the 3.10 EL 7.3 and later27 # kernels. This file was added in 3.11 and back-ported to the EL 7.3 kernel. 28 ifeq ($(wildcard $(KERN_INCL)/drm/drm_rect.h),)29 BUILD = 26 # We want to build on Linux 3.11 and later and on all EL 7 kernels. 27 ifneq ($(filter-out 1.% 2.% 3.0.% 3.1.% 3.2.% 3.3.% 3.4.% 3.5.% 3.6.% 3.7.% \ 28 3.8.% 3.9.% 3.10.%,$(KERN_VER)),) 29 BUILD = 1 30 30 endif 31 32 # And we do not want to build on EL6, regardless of what may have been 33 # backported. 34 ifneq ($(wildcard /etc/redhat-release),) 35 ifneq ($(shell grep "Enterprise.*release 6" /etc/redhat-release),) 36 BUILD = 37 endif 31 ifeq ($(filter-out %.el7.x86_64,$(KERN_VER)),) 32 BUILD = 1 38 33 endif 39 34
Note:
See TracChangeset
for help on using the changeset viewer.