Subject: Small change to hpcmips port
To: None <port-hpcmips@netbsd.org, port-mips@netbsd.org>
From: Warner Losh <imp@harmony.village.org>
List: port-mips
Date: 06/21/2001 15:13:06
Recent hpcmips kernel makefiles give me the following warning:
make: "/sys/arch/hpcmips/compile/GENERIC/Makefile" line 1417: warning: duplicate script for target "fp.o" ignored
make: "/sys/arch/hpcmips/compile/GENERIC/Makefile" line 520: warning: using previous script for "fp.o" defined here


Index: files.hpcmips
===================================================================
RCS file: /home/imp/NetBSD/CVS/syssrc/sys/arch/hpcmips/conf/files.hpcmips,v
retrieving revision 1.59
diff -u -r1.59 files.hpcmips
--- files.hpcmips	2001/06/13 19:09:07	1.59
+++ files.hpcmips	2001/06/21 21:11:58
@@ -48,7 +48,7 @@
 file	arch/hpcmips/vr/vr_idle.S	vr41xx
 file	arch/hpcmips/tx/tx39.c		tx39xx	# TOSHIBA TX3900 series
 
-file	arch/mips/mips/fp.S		softfloat
+#file	arch/mips/mips/fp.S		softfloat
 
 file	arch/hpcmips/hpcmips/autoconf.c
 file	arch/hpcmips/hpcmips/bus_dma.c

Fixes the warning, but I don't think that's the right fix.

What is the right fix here?

Warner