diff -r 108eaf22653b -r f7eaca0e8519 scripts/build/kernel/linux.sh --- a/scripts/build/kernel/linux.sh Mon Apr 06 20:27:17 2009 +0000 +++ b/scripts/build/kernel/linux.sh Sun Jan 31 13:09:01 2010 +0100 @@ -47,7 +47,7 @@ # Only starting with 2.6.18 does headers_install is usable. We only # have 2.6 version available, so only test for sublevel. - k_sublevel=$("${awk}" '/^SUBLEVEL =/ { print $3 }' "${CT_SRC_DIR}/linux-${CT_KERNEL_VERSION}/Makefile") + k_sublevel=$(awk '/^SUBLEVEL =/ { print $3 }' "${CT_SRC_DIR}/linux-${CT_KERNEL_VERSION}/Makefile") [ ${k_sublevel} -ge 18 ] || CT_Abort "Kernel version >= 2.6.18 is needed to install kernel headers." V_OPT="V=${CT_KERNEL_LINUX_VERBOSE_LEVEL}"