diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2012-10-31 15:22:43 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2012-10-31 15:22:43 +0000 |
commit | 57ae29bdd91de0e836aa6f560c21e75d53a92153 (patch) | |
tree | a036e9a1a4ec0f78b3a0f0d7cd5b21a635f46cc7 /sys | |
parent | fb06d4b9fcffe609062d9c792fd3fb27ed120a26 (diff) |
Unbreak build on !i386.
Pointed out by deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index 3ed4ef06cbb..44f8dd5443f 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,20 +1,20 @@ -# $OpenBSD: Makefile,v 1.45 2012/10/31 13:57:20 jsing Exp $ +# $OpenBSD: Makefile,v 1.46 2012/10/31 15:22:42 jsing Exp $ .include "${.CURDIR}/../Makefile.inc" MAN?= boot.8 MLINKS?=boot.8 boot.conf.5 -.if ${MACHINE} == "i386" -S =${.CURDIR}/../../../.. -SADIR= ${.CURDIR}/.. - .if !empty(CFLAGS:M-DFDBOOT) SOFTRAID?=no .else SOFTRAID?=yes .endif +.if ${MACHINE} == "i386" +S =${.CURDIR}/../../../.. +SADIR= ${.CURDIR}/.. + PROG?= boot LD?= ld SIZE?= size |