Source-Changes-HG archive

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

[src/trunk]: src/distrib/utils/x_ifconfig no need for extra paren



details:   https://anonhg.NetBSD.org/src/rev/119ef2e9ee84
branches:  trunk
changeset: 532929:119ef2e9ee84
user:      itojun <itojun%NetBSD.org@localhost>
date:      Tue Jun 18 01:53:35 2002 +0000

description:
no need for extra paren

diffstat:

 distrib/utils/x_ifconfig/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 1ecdbaca4da2 -r 119ef2e9ee84 distrib/utils/x_ifconfig/Makefile
--- a/distrib/utils/x_ifconfig/Makefile Tue Jun 18 01:42:10 2002 +0000
+++ b/distrib/utils/x_ifconfig/Makefile Tue Jun 18 01:53:35 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2001/12/12 00:05:13 tv Exp $
+# $NetBSD: Makefile,v 1.17 2002/06/18 01:53:35 itojun Exp $
 # Build a smaller ifconfig (i.e. for boot media)
 
 SRCDIR=                ${.CURDIR}/../../../sbin/ifconfig
@@ -7,7 +7,7 @@
 NOMAN=         # defined
 
 CPPFLAGS+=     -DINET_ONLY -I${SRCDIR}
-.if (${MACHINE} == "i386") || (${MACHINE} == "hpcmips") || (${MACHINE} == "x68k")
+.if (${MACHINE} == "i386" || ${MACHINE} == "hpcmips" || ${MACHINE} == "x68k")
 CPPFLAGS+=     -DINET6
 .endif
 



Home | Main Index | Thread Index | Old Index