From owner-svn-src-all@FreeBSD.ORG Thu Oct 13 14:58:15 2011 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DE34106564A; Thu, 13 Oct 2011 14:58:15 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from sakura.ccs.furiru.org (sakura.ccs.furiru.org [IPv6:2001:2f0:104:8060::1]) by mx1.freebsd.org (Postfix) with ESMTP id 2A1488FC0C; Thu, 13 Oct 2011 14:58:14 +0000 (UTC) Received: from localhost (authenticated bits=0) by sakura.ccs.furiru.org (unknown) with ESMTP id p9DEupFi001775; Thu, 13 Oct 2011 23:56:53 +0900 (JST) (envelope-from nyan@FreeBSD.org) Date: Thu, 13 Oct 2011 23:56:50 +0900 (JST) Message-Id: <20111013.235650.242248466124968537.nyan@FreeBSD.org> To: des@des.no From: TAKAHASHI Yoshihiro In-Reply-To: <86r52h9f5g.fsf@ds4.des.no> References: <201110122145.p9CLjCcm085538@svn.freebsd.org> <20111013.221443.343708041391999047.nyan@FreeBSD.org> <86r52h9f5g.fsf@ds4.des.no> X-Mailer: Mew version 6.3 on Emacs 23.3 / Mule 6.0 =?iso-2022-jp?B?KBskQjJWOzZOJBsoQik=?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r226329 - head/usr.bin/kdump X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Oct 2011 14:58:15 -0000 In article <86r52h9f5g.fsf@ds4.des.no> Dag-Erling Sm=F8rgrav writes: > TAKAHASHI Yoshihiro writes: >> This change breaks cross building. > = > Damn, you're right. Will this work? > = > Index: usr.bin/kdump/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- usr.bin/kdump/Makefile (revision 226329) > +++ usr.bin/kdump/Makefile (working copy) > @@ -21,7 +21,8 @@ > CLEANFILES=3D ioctl.c kdump_subr.c kdump_subr.h linux_syscalls.c > = > ioctl.c: mkioctls > - sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET} > + env MACHINE=3D${TARGET} \ > + sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ${.TARGET} > = > kdump_subr.h: mksubr > sh ${.CURDIR}/mksubr ${DESTDIR}/usr/include | \ The above ${TARGET} should be ${MACHINE}. The others are fine. Thanks. --- TAKAHASHI Yoshihiro