From: Felipe Contreras Date: Wed, 16 Sep 2009 21:38:40 +0000 (+0300) Subject: kbuild: mkcompile_h: trivial cleanups X-Git-Tag: Ubuntu-5.0.0-8.9~25432^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=17c5ca98833dc3d8f8dd4e85487da238c50cd8c9;p=mirror_ubuntu-disco-kernel.git kbuild: mkcompile_h: trivial cleanups UTS_TRUNCATTE is simpler this way, and now editors idetify this as a shell script. Signed-off-by: Felipe Contreras Acked-by: WANG Cong Signed-off-by: Sam Ravnborg --- diff --git a/scripts/mkcompile_h b/scripts/mkcompile_h index f060763c0c6a..bce3d0fe6fbd 100755 --- a/scripts/mkcompile_h +++ b/scripts/mkcompile_h @@ -1,3 +1,5 @@ +#!/bin/sh + TARGET=$1 ARCH=$2 SMP=$3 @@ -50,7 +52,7 @@ UTS_VERSION="$UTS_VERSION $CONFIG_FLAGS $TIMESTAMP" # Truncate to maximum length UTS_LEN=64 -UTS_TRUNCATE="sed -e s/\(.\{1,$UTS_LEN\}\).*/\1/" +UTS_TRUNCATE="cut -b -$UTS_LEN" # Generate a temporary compile.h