Module Name:    src
Committed By:   rillig
Date:           Mon Aug 31 06:44:12 UTC 2020

Modified Files:
        src/usr.bin/make: Makefile

Log Message:
make(1): fix copy-and-paste mistake for compiling with GCC10


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 src/usr.bin/make/Makefile

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/Makefile
diff -u src/usr.bin/make/Makefile:1.96 src/usr.bin/make/Makefile:1.97
--- src/usr.bin/make/Makefile:1.96	Fri Aug 28 20:57:54 2020
+++ src/usr.bin/make/Makefile	Mon Aug 31 06:44:12 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.96 2020/08/28 20:57:54 rillig Exp $
+#	$NetBSD: Makefile,v 1.97 2020/08/31 06:44:12 rillig Exp $
 #	@(#)Makefile	5.2 (Berkeley) 12/28/90
 
 PROG=	make
@@ -131,7 +131,7 @@ COPTS.parse.c+=	-Wno-format-nonliteral
 COPTS.var.c+=	-Wno-format-nonliteral
 
 .if ${USE_GCC10} == "yes"
-GCC9BASE?=	/usr/pkg/gcc10
+GCC10BASE?=	/usr/pkg/gcc10
 CC=		${GCC10BASE}/bin/gcc
 GCOV=		${GCC10BASE}/bin/gcov
 .endif

Reply via email to