Index: VBox/Installer/linux/Makefile.include.header
===================================================================
--- VBox/Installer/linux/Makefile.include.header	(Revision 50574)
+++ VBox/Installer/linux/Makefile.include.header	(Arbeitskopie)
@@ -109,7 +109,11 @@
 
  # includes
  ifndef KERN_INCL
-  KERN_INCL = $(KERN_DIR)/include
+  ifeq ($(shell if test -d $(KERN_DIR)/include/generated/uapi; then echo yes; fi),yes)
+    KERN_INCL = $(KERN_DIR)/include/generated/uapi
+  else
+    KERN_INCL = $(KERN_DIR)/include
+  fi
  endif
  ifneq ($(shell if test -d $(KERN_INCL); then echo yes; fi),yes)
   $(error Error: unable to find the include directory for your current Linux \
