[PATCH] UBUNTU: SAUCE: apparmor: Fix FTBFS due to bad include path
Tyler Hicks
tyhicks at canonical.com
Tue Apr 5 17:35:23 UTC 2016
When header files in security/apparmor/includes/ pull in other header
files in that directory, they should only include the file name. This
fixes a build failure reported by Tycho when using `make bindeb-pkg` to
build the Ubuntu kernel tree but, confusingly, isn't seen when building
with `fakeroot debian/rules binary-generic`.
Signed-off-by: Tyler Hicks <tyhicks at canonical.com>
Reported-by: Tycho Andersen <tycho.andersen at canonical.com>
Cc: John Johansen <john.johansen at canonical.com>
---
security/apparmor/include/domain.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/security/apparmor/include/domain.h b/security/apparmor/include/domain.h
index 89cfa75..b589655 100644
--- a/security/apparmor/include/domain.h
+++ b/security/apparmor/include/domain.h
@@ -15,7 +15,7 @@
#include <linux/binfmts.h>
#include <linux/types.h>
-#include "include/label.h"
+#include "label.h"
#ifndef __AA_DOMAIN_H
#define __AA_DOMAIN_H
--
2.7.4
More information about the kernel-team
mailing list