diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-11 20:07:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-11 20:07:54 +0000 |
commit | 9a2302e9d817f5817334e0242d23a80d9b6b4adf (patch) | |
tree | 853d74593b2d8b70fd520609bd194daa15f81111 /sys/arch | |
parent | adeb8fdc09c3342ee5b204da6e859d3348592e0f (diff) |
use muldi3.c to avoid putting instructions 68060 does not support into the
boot media; from miod, tested by martin, this is just making release.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mvme68k/stand/libsa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/stand/libsa/Makefile b/sys/arch/mvme68k/stand/libsa/Makefile index 31750f45dee..65a5190e4a4 100644 --- a/sys/arch/mvme68k/stand/libsa/Makefile +++ b/sys/arch/mvme68k/stand/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.20 2007/12/28 18:56:09 miod Exp $ +# $OpenBSD: Makefile,v 1.21 2008/03/11 20:07:53 deraadt Exp $ LIB=sa @@ -20,7 +20,7 @@ SRCS+= alloc.c memcpy.c exit.c getfile.c gets.c globals.c printf.c \ SRCS+= arp.c ether.c in_cksum.c net.c netif.c rpc.c nfs.c rarp.c bootparam.c .PATH: ${S}/lib/libkern -SRCS+= ashrdi3.c +SRCS+= ashrdi3.c muldi3.c # DBG= -DDEBUG -DNETIF_DEBUG -DNFS_DEBUG -DRPC_DEBUG \ # -DNET_DEBUG -DRARP_DEBUG -DETHER_DEBUG |