From 7a77eb896e3f21f0b8a172cd8ee10ef9cbc78358 Mon Sep 17 00:00:00 2001 From: Peter Grehan Date: Wed, 24 Sep 2003 01:45:07 +0000 Subject: [PATCH] _MACHINE/_MACHINE_ARCH shouldn't be quoted. Found by trying to compile the isp driver. --- sys/powerpc/include/param.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/powerpc/include/param.h b/sys/powerpc/include/param.h index 19494f9d64f..6180b661c69 100644 --- a/sys/powerpc/include/param.h +++ b/sys/powerpc/include/param.h @@ -57,10 +57,10 @@ #endif #ifndef _MACHINE -#define _MACHINE "powerpc" +#define _MACHINE powerpc #endif #ifndef _MACHINE_ARCH -#define _MACHINE_ARCH "powerpc" +#define _MACHINE_ARCH powerpc #endif #ifndef _NO_NAMESPACE_POLLUTION