From 064bf679a0670056145b9317119c206fd403ddb4 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 20 Jul 2009 15:23:26 -0400 Subject: MAKEALL: find kernel headers better Work with pre-sysroot compilers that have kernel headers available in the standard location, and let people force the location manually. Signed-off-by: Mike Frysinger --- extra/scripts/MAKEALL | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/extra/scripts/MAKEALL b/extra/scripts/MAKEALL index dc9f754a0..6bacc9a7c 100755 --- a/extra/scripts/MAKEALL +++ b/extra/scripts/MAKEALL @@ -101,7 +101,18 @@ for a in "$@" ; do setconfig CROSS_COMPILER_PREFIX ${CROSS} - header_path=$(echo '#include ' | ${CROSS}cpp 2>&1 | grep -o '[^"]*linux/version.h') + header_path=${KERNEL_HEADERS:-$(echo '#include ' | ${CROSS}cpp 2>/dev/null | grep -o '[^"]*linux/version.h')} || : + if [ -z "${header_path}" ] ; then + for p in /usr/${CROSS%-}/usr/include ; do + if [ -e ${p}/linux/version.h ] ; then + header_path=${p} + break + fi + done + if [ -z "${header_path}" ] ; then + echo " ## unable to locate KERNEL_HEADERS" + fi + fi setconfig KERNEL_HEADERS ${header_path%/linux/version.h} if do_make ; then -- cgit v1.2.3