Module Name:    src
Committed By:   tsutsui
Date:           Thu Apr  2 13:00:40 UTC 2009

Modified Files:
        src/sys/arch/vax/vax: gencons.c multicpu.c

Log Message:
Don't use relative path from <machine> in #include.
It won't work for symlinks.


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/arch/vax/vax/gencons.c
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/vax/vax/multicpu.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/vax/vax/gencons.c
diff -u src/sys/arch/vax/vax/gencons.c:1.49 src/sys/arch/vax/vax/gencons.c:1.50
--- src/sys/arch/vax/vax/gencons.c:1.49	Tue Mar 11 05:34:03 2008
+++ src/sys/arch/vax/vax/gencons.c	Thu Apr  2 13:00:40 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: gencons.c,v 1.49 2008/03/11 05:34:03 matt Exp $	*/
+/*	$NetBSD: gencons.c,v 1.50 2009/04/02 13:00:40 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1994 Gordon W. Ross
@@ -36,7 +36,7 @@
  /* All bugs are subject to removal without further notice */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gencons.c,v 1.49 2008/03/11 05:34:03 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gencons.c,v 1.50 2009/04/02 13:00:40 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_cputype.h"
@@ -60,7 +60,7 @@
 #include <machine/sid.h>
 #include <machine/cpu.h>
 #include <machine/scb.h>
-#include <machine/../vax/gencons.h>
+#include <vax/vax/gencons.h>
 
 static	struct gc_softc {
 	short alive;

Index: src/sys/arch/vax/vax/multicpu.c
diff -u src/sys/arch/vax/vax/multicpu.c:1.25 src/sys/arch/vax/vax/multicpu.c:1.26
--- src/sys/arch/vax/vax/multicpu.c:1.25	Tue Mar 11 05:34:03 2008
+++ src/sys/arch/vax/vax/multicpu.c	Thu Apr  2 13:00:40 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: multicpu.c,v 1.25 2008/03/11 05:34:03 matt Exp $	*/
+/*	$NetBSD: multicpu.c,v 1.26 2009/04/02 13:00:40 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 2000 Ludd, University of Lule}, Sweden. All rights reserved.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: multicpu.c,v 1.25 2008/03/11 05:34:03 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: multicpu.c,v 1.26 2009/04/02 13:00:40 tsutsui Exp $");
 
 #include "opt_multiprocessor.h"
 
@@ -49,7 +49,7 @@
 #include <uvm/uvm_extern.h>
 
 #include <machine/cpu.h>
-#include <machine/../vax/gencons.h>
+#include <vax/vax/gencons.h>
 
 #include "ioconf.h"
 

Reply via email to