svn commit: r185045 - head/sys/boot/i386/loader

Andrey A. Chernov ache at FreeBSD.org
Mon Nov 17 19:55:56 PST 2008


Author: ache
Date: Tue Nov 18 03:55:55 2008
New Revision: 185045
URL: http://svn.freebsd.org/changeset/base/185045

Log:
  Fix building without ZFS (can't find library)

Modified:
  head/sys/boot/i386/loader/Makefile

Modified: head/sys/boot/i386/loader/Makefile
==============================================================================
--- head/sys/boot/i386/loader/Makefile	Tue Nov 18 03:43:02 2008	(r185044)
+++ head/sys/boot/i386/loader/Makefile	Tue Nov 18 03:55:55 2008	(r185045)
@@ -21,6 +21,8 @@ LIBFIREWIRE=	${.OBJDIR}/../libfirewire/l
 .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.


More information about the svn-src-head mailing list