Subject: Re: make and MACHINE_ARCH
To: Arne Henrik Juul <arnej@imf.unit.no>
From: Johnny Billquist <bqt@Krille.Update.UU.SE>
List: port-vax
Date: 12/05/1995 15:23:53
>I've upgraded to NetBSD 1.1 on our uVAX-II by recompiling (what fun!)
>and I found that my recompiled `make' didn't know what MACHINE_ARCH
>should be.  This is because machine/param.h doesn't define it, so
>here's a patch; apply in /usr/src/sys/arch/vax/include and make
>should work without `setenv MACHINE_ARCH vax' first.
>
>  - Arne H. J.
>
>--- param.h.orig	Sat Oct 14 03:29:51 1995
>+++ param.h	Mon Dec  4 02:33:12 1995
>@@ -50,6 +50,7 @@
>  * Machine dependent constants for VAX.
>  */
> 
>+#define MACHINE_ARCH	"vax"
> #define MACHINE		"vax"
> #define MID_MACHINE	MID_VAX
> #define UNIX		"vmunix"

This won't help you. The variable MACHINE_ARCH is also used by the
Makefile...

	Johnny