Module Name: src
Committed By: dholland
Date: Mon Feb 25 01:57:14 UTC 2013
Modified Files:
src/usr.bin/make: make.h
Log Message:
Fix obvious typo.
To generate a diff of this commit:
cvs rdiff -u -r1.89 -r1.90 src/usr.bin/make/make.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/make.h
diff -u src/usr.bin/make/make.h:1.89 src/usr.bin/make/make.h:1.90
--- src/usr.bin/make/make.h:1.89 Tue Jun 12 19:21:51 2012
+++ src/usr.bin/make/make.h Mon Feb 25 01:57:14 2013
@@ -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)