Changeset 11472 in vbox for trunk/src/VBox/Additions/linux/sharedfolders
- Timestamp:
- Aug 18, 2008 6:37:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/Makefile.module
r11463 r11472 172 172 KFLAGS += $(foreach inc,$(KERN_INCL),\ 173 173 $(if $(wildcard $(inc)/linux/utsrelease.h),\ 174 $(if $(shell if grep -q '"2.6.18.*fc6.*"' $(inc)/linux/utsrelease.h;\ 175 then echo yes; fi),-DKERNEL_FC6,),) \ 176 $(if $(wildcard $(inc)/linux/utsrelease.h),\ 177 $(if $(shell if grep -q '"2.6.18.*el5.*"' $(inc)/linux/utsrelease.h;\ 178 then echo yes; fi),-DKERNEL_FC6,),)) 174 $(if $(shell grep '"2.6.18.*fc6.*"' $(inc)/linux/utsrelease.h; \ 175 grep '"2.6.18.*el5.*"' $(inc)/linux/utsrelease.h; \ 176 grep '"2.6.18.*cc4.*"' $(inc)/linux/utsrelease.h),\ 177 -DKERNEL_FC6,),)) 179 178 else 180 KFLAGS += $(if $(shell if echo "$(KERNELRELEASE)"|grep -q'2.6.18.*fc6.*';\181 then echo yes; fi),-DKERNEL_FC6,)\182 $(if $(shell if echo "$(KERNELRELEASE)"|grep -q '2.6.18.*el5.*';\183 then echo yes; fi),-DKERNEL_FC6,)179 KFLAGS += $(if $(shell echo "$(KERNELRELEASE)"|grep '2.6.18.*fc6.*';\ 180 echo "$(KERNELRELEASE)"|grep '2.6.18.*el5.*';\ 181 echo "$(KERNELRELEASE)"|grep '2.6.18.*cc4.*'),\ 182 -DKERNEL_FC6,) 184 183 endif 185 184
Note:
See TracChangeset
for help on using the changeset viewer.