From owner-p4-projects@FreeBSD.ORG Thu Oct 26 22:14:25 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9FE4016A415; Thu, 26 Oct 2006 22:14:25 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 462BD16A407 for ; Thu, 26 Oct 2006 22:14:25 +0000 (UTC) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17F0243D46 for ; Thu, 26 Oct 2006 22:14:25 +0000 (GMT) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9QMEO8B043187 for ; Thu, 26 Oct 2006 22:14:24 GMT (envelope-from marcel@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9QMEOqm043184 for perforce@freebsd.org; Thu, 26 Oct 2006 22:14:24 GMT (envelope-from marcel@freebsd.org) Date: Thu, 26 Oct 2006 22:14:24 GMT Message-Id: <200610262214.k9QMEOqm043184@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to marcel@freebsd.org using -f From: Marcel Moolenaar To: Perforce Change Reviews Cc: Subject: PERFORCE change 108533 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Oct 2006 22:14:25 -0000 http://perforce.freebsd.org/chv.cgi?CH=108533 Change 108533 by marcel@marcel_cluster on 2006/10/26 22:13:32 Build EFI library on amd64 and i386 as well. Affected files ... .. //depot/projects/ia64/sys/boot/Makefile#20 edit .. //depot/projects/ia64/sys/boot/efi/libefi/Makefile#13 edit Differences ... ==== //depot/projects/ia64/sys/boot/Makefile#20 (text+ko) ==== @@ -8,7 +8,7 @@ .endif # Build EFI library. -.if ${MACHINE_ARCH} == "ia64" +.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "ia64" SUBDIR+= efi .endif ==== //depot/projects/ia64/sys/boot/efi/libefi/Makefile#13 (text+ko) ==== @@ -6,7 +6,7 @@ SRCS= delay.c efi_console.c efifs.c efinet.c libefi.c module.c time.c CFLAGS+= -I${.CURDIR}/../include -CFLAGS+= -I${.CURDIR}/../include/${MACHINE_ARCH} +CFLAGS+= -I${.CURDIR}/../include/${MACHINE_ARCH:S/amd64/i386/} CFLAGS+= -I${.CURDIR}/../../../../lib/libstand # Pick up the bootstrap header for some interface items