diff options
Diffstat (limited to 'scripts/mkcompile_h')
| -rwxr-xr-x | scripts/mkcompile_h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mkcompile_h b/scripts/mkcompile_h index f221ddf6908..6fdc97ef602 100755 --- a/scripts/mkcompile_h +++ b/scripts/mkcompile_h @@ -68,7 +68,7 @@ UTS_TRUNCATE="cut -b -$UTS_LEN"  ( echo /\* This file is auto generated, version $VERSION \*/    if [ -n "$CONFIG_FLAGS" ] ; then echo "/* $CONFIG_FLAGS */"; fi -   +    echo \#define UTS_MACHINE \"$ARCH\"    echo \#define UTS_VERSION \"`echo $UTS_VERSION | $UTS_TRUNCATE`\" @@ -76,7 +76,7 @@ UTS_TRUNCATE="cut -b -$UTS_LEN"    echo \#define LINUX_COMPILE_BY \"`echo $LINUX_COMPILE_BY | $UTS_TRUNCATE`\"    echo \#define LINUX_COMPILE_HOST \"`echo $LINUX_COMPILE_HOST | $UTS_TRUNCATE`\" -  echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -n 1`\" +  echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | grep ' version '`\"  ) > .tmpcompile  # Only replace the real compile.h if the new one is different, @@ -84,7 +84,7 @@ UTS_TRUNCATE="cut -b -$UTS_LEN"  # recompilations.  # We don't consider the file changed if only the date/time changed.  # A kernel config change will increase the generation number, thus -# causing compile.h to be updated (including date/time) due to the  +# causing compile.h to be updated (including date/time) due to the  # changed comment in the  # first line.  | 
