diff options
Diffstat (limited to 'scripts/mkcompile_h')
| -rwxr-xr-x | scripts/mkcompile_h | 16 | 
1 files changed, 2 insertions, 14 deletions
diff --git a/scripts/mkcompile_h b/scripts/mkcompile_h index 50ad317a4bf..82416a81df5 100755 --- a/scripts/mkcompile_h +++ b/scripts/mkcompile_h @@ -63,21 +63,9 @@ UTS_TRUNCATE="cut -b -$UTS_LEN"    echo \#define UTS_VERSION \"`echo $UTS_VERSION | $UTS_TRUNCATE`\" -  echo \#define LINUX_COMPILE_TIME \"`date +%T`\"    echo \#define LINUX_COMPILE_BY \"`whoami`\"    echo \#define LINUX_COMPILE_HOST \"`hostname | $UTS_TRUNCATE`\" -  domain=`dnsdomainname 2> /dev/null` -  if [ -z "$domain" ]; then -    domain=`domainname 2> /dev/null` -  fi - -  if [ -n "$domain" ]; then -    echo \#define LINUX_COMPILE_DOMAIN \"`echo $domain | $UTS_TRUNCATE`\" -  else -    echo \#define LINUX_COMPILE_DOMAIN -  fi -    echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -n 1`\"  ) > .tmpcompile @@ -91,8 +79,8 @@ UTS_TRUNCATE="cut -b -$UTS_LEN"  # first line.  if [ -r $TARGET ] && \ -      grep -v 'UTS_VERSION\|LINUX_COMPILE_TIME' $TARGET > .tmpver.1 && \ -      grep -v 'UTS_VERSION\|LINUX_COMPILE_TIME' .tmpcompile > .tmpver.2 && \ +      grep -v 'UTS_VERSION' $TARGET > .tmpver.1 && \ +      grep -v 'UTS_VERSION' .tmpcompile > .tmpver.2 && \        cmp -s .tmpver.1 .tmpver.2; then     rm -f .tmpcompile  else  |