[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1417589535-15867-1-git-send-email-yamada.m@jp.panasonic.com>
Date: Wed, 3 Dec 2014 15:52:15 +0900
From: Masahiro Yamada <yamada.m@...panasonic.com>
To: linux-kbuild@...r.kernel.org
Cc: Masahiro Yamada <yamada.m@...panasonic.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH] kbuild: fix scripts/headers.sh to see the correct Kbuild path
The exported headers were moved to "uapi" directories.
We should check the existence of arch/*/include/uapi/asm/Kbuild.
Signed-off-by: Masahiro Yamada <yamada.m@...panasonic.com>
---
scripts/headers.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/headers.sh b/scripts/headers.sh
index 95ece06..b164336 100755
--- a/scripts/headers.sh
+++ b/scripts/headers.sh
@@ -6,7 +6,7 @@ set -e
do_command()
{
- if [ -f ${srctree}/arch/$2/include/asm/Kbuild ]; then
+ if [ -f ${srctree}/arch/$2/include/uapi/asm/Kbuild ]; then
make ARCH=$2 KBUILD_HEADERS=$1 headers_$1
else
printf "Ignoring arch: %s\n" ${arch}
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists