diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2016-12-03 03:34:34 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2016-12-03 03:34:34 +0000 |
commit | badf643c00cec7a3ae1cc2ede14576b2f40a6f51 (patch) | |
tree | 963422f2dc741e940aee15353573348167b31cba /sys/arch/luna88k | |
parent | 8bc36cd05d001282dc8ae4f8cdc9c78c3a6e03e5 (diff) |
luna88k bootloader needs __ashldi3 to compile sys/lib/libsa/ufs.c 1.26.
Diffstat (limited to 'sys/arch/luna88k')
-rw-r--r-- | sys/arch/luna88k/stand/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/luna88k/stand/boot/Makefile b/sys/arch/luna88k/stand/boot/Makefile index 63881742742..db52b8c6470 100644 --- a/sys/arch/luna88k/stand/boot/Makefile +++ b/sys/arch/luna88k/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2016/11/06 16:42:00 tb Exp $ +# $OpenBSD: Makefile,v 1.9 2016/12/03 03:34:33 aoyama Exp $ # $NetBSD: Makefile,v 1.9 2013/01/22 15:48:40 tsutsui Exp $ # @(#)Makefile 8.2 (Berkeley) 8/15/93 @@ -44,7 +44,7 @@ PROG= boot ### find out what to use for libkern .PATH: ${S}/lib/libkern SRCS+= memcpy.c strlcat.c strlcpy.c strlen.c -SRCS+= muldi3.c negdi2.c ashrdi3.c +SRCS+= muldi3.c negdi2.c ashldi3.c ashrdi3.c ### find out what to use for libsa .PATH: ${S}/lib/libsa |