Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Dec 2008 14:45:03 +0000 (UTC)
From:      Paul Saab <ps@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r185711 - head/sys/boot/zfs
Message-ID:  <200812061445.mB6Ej3dh097523@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812061445.mB6Ej3dh097523>