From owner-svn-soc-all@FreeBSD.ORG Tue Jun 23 15:40:42 2015 Return-Path: Delivered-To: svn-soc-all@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 378E0267 for ; Tue, 23 Jun 2015 15:40:42 +0000 (UTC) (envelope-from clord@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (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 258499A2 for ; Tue, 23 Jun 2015 15:40:42 +0000 (UTC) (envelope-from clord@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NFegUs052810 for ; Tue, 23 Jun 2015 15:40:42 GMT (envelope-from clord@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.9/8.14.9/Submit) id t5NFef4E052806 for svn-soc-all@FreeBSD.org; Tue, 23 Jun 2015 15:40:41 GMT (envelope-from clord@FreeBSD.org) Date: Tue, 23 Jun 2015 15:40:41 GMT Message-Id: <201506231540.t5NFef4E052806@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to clord@FreeBSD.org using -f From: clord@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r287481 - soc2015/clord/head/sys/boot/i386/loader MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 15:40:42 -0000 Author: clord Date: Tue Jun 23 15:40:41 2015 New Revision: 287481 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=287481 Log: Fix path to ficl sources to match new location in sys/contrib/ficl rather than sys/boot/ficl Modified: soc2015/clord/head/sys/boot/i386/loader/Makefile Modified: soc2015/clord/head/sys/boot/i386/loader/Makefile ============================================================================== --- soc2015/clord/head/sys/boot/i386/loader/Makefile Tue Jun 23 15:39:15 2015 (r287480) +++ soc2015/clord/head/sys/boot/i386/loader/Makefile Tue Jun 23 15:40:41 2015 (r287481) @@ -41,7 +41,7 @@ .if ${MK_FORTH} != "no" # Enable BootForth BOOT_FORTH= yes -CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386 +CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../../contrib/ficl -I${.CURDIR}/../../../contrib/ficl/i386 .if ${MACHINE_CPUARCH} == "amd64" LIBFICL= ${.OBJDIR}/../../ficl32/libficl.a .else