Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/make Fix obvious typo.



details:   https://anonhg.NetBSD.org/src/rev/f3d0ea82855f
branches:  trunk
changeset: 785131:f3d0ea82855f
user:      dholland <dholland%NetBSD.org@localhost>
date:      Mon Feb 25 01:57:14 2013 +0000

description:
Fix obvious typo.

diffstat:

 usr.bin/make/make.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r aeba95b05015 -r f3d0ea82855f usr.bin/make/make.h
--- a/usr.bin/make/make.h       Mon Feb 25 00:36:22 2013 +0000
+++ b/usr.bin/make/make.h       Mon Feb 25 01:57:14 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.h,v 1.89 2012/06/12 19:21:51 joerg Exp $  */
+/*     $NetBSD: make.h,v 1.90 2013/02/25 01:57:14 dholland Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -98,7 +98,7 @@
        ((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) ||                  \
         (__GNUC__ > (x)))
 #else /* defined(__GNUC__) */
-#define        MAKE_GNUC_PREREQx, y)   0
+#define        MAKE_GNUC_PREREQ(x, y)  0
 #endif /* defined(__GNUC__) */
 
 #if MAKE_GNUC_PREREQ(2, 7)



Home | Main Index | Thread Index | Old Index