svn commit: r185711 - head/sys/boot/zfs

Paul Saab ps at FreeBSD.org
Sat Dec 6 06:45:05 PST 2008


Author: ps
Date: Sat Dec  6 14:45:03 2008
New Revision: 185711
URL: http://svn.freebsd.org/changeset/base/185711

Log:
  Correct include path for i386 specific includes.  This allows zfs
  to boot on systems where the loader is built on amd64 systems.

Modified:
  head/sys/boot/zfs/Makefile

Modified: head/sys/boot/zfs/Makefile
==============================================================================
--- head/sys/boot/zfs/Makefile	Sat Dec  6 14:42:36 2008	(r185710)
+++ head/sys/boot/zfs/Makefile	Sat Dec  6 14:45:03 2008	(r185711)
@@ -29,7 +29,7 @@ CFLAGS+=	-Wformat -Wall
 .if ${MACHINE_ARCH} == "amd64"
 CLEANFILES+=    machine
 machine:
-	ln -sf ${.CURDIR}/../../../i386/include machine
+	ln -sf ${.CURDIR}/../../i386/include machine
 .endif
 
 .include <bsd.lib.mk>


More information about the svn-src-head mailing list