aboutsummaryrefslogtreecommitdiff
path: root/sys/boot
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2008-11-18 03:55:55 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2008-11-18 03:55:55 +0000
commitcaab1f000cbe275d9e64be5f0e698455b6fdb360 (patch)
treebb6763179bd7bf71a53bd6209a3e41cf952bf762 /sys/boot
parent567bc443e808e04b0f9ab31b721001c26e66f041 (diff)
downloadsrc-caab1f000cbe275d9e64be5f0e698455b6fdb360.tar.gz
src-caab1f000cbe275d9e64be5f0e698455b6fdb360.zip
Fix building without ZFS (can't find library)
Notes
Notes: svn path=/head/; revision=185045
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/i386/loader/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/i386/loader/Makefile b/sys/boot/i386/loader/Makefile
index 79aceca277c6..f1aa15c743db 100644
--- a/sys/boot/i386/loader/Makefile
+++ b/sys/boot/i386/loader/Makefile
@@ -21,6 +21,8 @@ LIBFIREWIRE= ${.OBJDIR}/../libfirewire/libfirewire.a
.if defined(LOADER_ZFS_SUPPORT)
CFLAGS+= -DLOADER_ZFS_SUPPORT
LIBZFS= ${.OBJDIR}/../../zfs/libzfsboot.a
+.else
+LIBZFS=
.endif
# Enable PXE TFTP or NFS support, not both.