Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tools Adjust whitespace to look more like assignment than co...



details:   https://anonhg.NetBSD.org/src/rev/af3c4b5b4cd5
branches:  trunk
changeset: 836531:af3c4b5b4cd5
user:      maya <maya%NetBSD.org@localhost>
date:      Mon Oct 22 13:19:42 2018 +0000

description:
Adjust whitespace to look more like assignment than comparison. NFC

diffstat:

 tools/Makefile.gnuhost |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 977b3351e305 -r af3c4b5b4cd5 tools/Makefile.gnuhost
--- a/tools/Makefile.gnuhost    Mon Oct 22 08:49:00 2018 +0000
+++ b/tools/Makefile.gnuhost    Mon Oct 22 13:19:42 2018 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.gnuhost,v 1.50 2018/10/21 00:26:24 christos Exp $
+#      $NetBSD: Makefile.gnuhost,v 1.51 2018/10/22 13:19:42 maya Exp $
 #
 # Rules used when building a GNU host package.  Expects MODULE to be set.
 #
@@ -19,7 +19,7 @@
 
 # Disable use of pre-compiled headers on Darwin.
 BUILD_OSTYPE!= uname -s
-HOST_COMPILER_CLANG != if ${HOST_CC} --version | grep -q -s clang; then echo yes; else echo no; fi
+HOST_COMPILER_CLANG!= if ${HOST_CC} --version | grep -q -s clang; then echo yes; else echo no; fi
 .if ${HOST_COMPILER_CLANG} == "yes"
 HOST_CFLAGS+=-O2 -no-cpp-precomp
 .endif



Home | Main Index | Thread Index | Old Index