Module Name:    src
Committed By:   rillig
Date:           Sat Nov  7 12:54:44 UTC 2020

Modified Files:
        src/usr.bin/make: arch.c

Log Message:
make(1): remove unused macro definitions from arch.c

These definitions have originally been added in arch.c 1.27 on
1998-05-21.  Even back then they had been unused, at least they had not
been used directly.  Since macros are expanded at their use site, there
could have been an indirect use, but that is not the case anymore.


To generate a diff of this commit:
cvs rdiff -u -r1.159 -r1.160 src/usr.bin/make/arch.c

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/arch.c
diff -u src/usr.bin/make/arch.c:1.159 src/usr.bin/make/arch.c:1.160
--- src/usr.bin/make/arch.c:1.159	Sat Nov  7 12:47:16 2020
+++ src/usr.bin/make/arch.c	Sat Nov  7 12:54:44 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: arch.c,v 1.159 2020/11/07 12:47:16 rillig Exp $	*/
+/*	$NetBSD: arch.c,v 1.160 2020/11/07 12:54:44 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -125,16 +125,7 @@
 #include "config.h"
 
 /*	"@(#)arch.c	8.2 (Berkeley) 1/2/94"	*/
-MAKE_RCSID("$NetBSD: arch.c,v 1.159 2020/11/07 12:47:16 rillig Exp $");
-
-#ifdef TARGET_MACHINE
-#undef MAKE_MACHINE
-#define MAKE_MACHINE TARGET_MACHINE
-#endif
-#ifdef TARGET_MACHINE_ARCH
-#undef MAKE_MACHINE_ARCH
-#define MAKE_MACHINE_ARCH TARGET_MACHINE_ARCH
-#endif
+MAKE_RCSID("$NetBSD: arch.c,v 1.160 2020/11/07 12:54:44 rillig Exp $");
 
 typedef struct List ArchList;
 typedef struct ListNode ArchListNode;

Reply via email to