From owner-svn-src-user@FreeBSD.ORG Fri Nov 21 03:19:52 2014 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 126803B0; Fri, 21 Nov 2014 03:19:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F31889E8; Fri, 21 Nov 2014 03:19:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAL3Jpbm034813; Fri, 21 Nov 2014 03:19:51 GMT (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAL3JpeH034808; Fri, 21 Nov 2014 03:19:51 GMT (envelope-from marcel@FreeBSD.org) Message-Id: <201411210319.sAL3JpeH034808@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marcel set sender to marcel@FreeBSD.org using -f From: Marcel Moolenaar Date: Fri, 21 Nov 2014 03:19:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r274782 - in user/marcel/libvdsk: bhyve bhyveload X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Nov 2014 03:19:52 -0000 Author: marcel Date: Fri Nov 21 03:19:51 2014 New Revision: 274782 URL: https://svnweb.freebsd.org/changeset/base/274782 Log: Build this outside a FreeBSD tree. Assume /sys works for us. Modified: user/marcel/libvdsk/bhyve/Makefile user/marcel/libvdsk/bhyveload/Makefile Modified: user/marcel/libvdsk/bhyve/Makefile ============================================================================== --- user/marcel/libvdsk/bhyve/Makefile Fri Nov 21 03:04:11 2014 (r274781) +++ user/marcel/libvdsk/bhyve/Makefile Fri Nov 21 03:19:51 2014 (r274782) @@ -40,7 +40,7 @@ SRCS= \ xmsr.c \ spinup_ap.c -.PATH: ${.CURDIR}/../../sys/amd64/vmm +.PATH: /sys/amd64/vmm SRCS+= vmm_instruction_emul.c DPADD= ${LIBVMMAPI} ${LIBMD} ${LIBUTIL} ${LIBPTHREAD} Modified: user/marcel/libvdsk/bhyveload/Makefile ============================================================================== --- user/marcel/libvdsk/bhyveload/Makefile Fri Nov 21 03:04:11 2014 (r274781) +++ user/marcel/libvdsk/bhyveload/Makefile Fri Nov 21 03:19:51 2014 (r274782) @@ -9,6 +9,6 @@ LDADD+= -lvmmapi -lutil WARNS?= 3 -CFLAGS+=-I${.CURDIR}/../../sys/boot/userboot +CFLAGS+=-I/sys/boot/userboot .include