From patchwork Tue May 12 09:42:49 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfgang Grandegger X-Patchwork-Id: 27092 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@bilbo.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ozlabs.org (ozlabs.org [203.10.76.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.ozlabs.org", Issuer "CA Cert Signing Authority" (verified OK)) by bilbo.ozlabs.org (Postfix) with ESMTPS id 05BA4B707C for ; Tue, 12 May 2009 19:43:40 +1000 (EST) Received: by ozlabs.org (Postfix) id E838EDDF84; Tue, 12 May 2009 19:43:39 +1000 (EST) Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 74449DDF80 for ; Tue, 12 May 2009 19:43:39 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757950AbZELJmv (ORCPT ); Tue, 12 May 2009 05:42:51 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755704AbZELJmu (ORCPT ); Tue, 12 May 2009 05:42:50 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:44832 "EHLO mail-out.m-online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750709AbZELJmt (ORCPT ); Tue, 12 May 2009 05:42:49 -0400 Received: from mail01.m-online.net (mail.m-online.net [192.168.3.149]) by mail-out.m-online.net (Postfix) with ESMTP id 0E9881C152C0; Tue, 12 May 2009 11:42:49 +0200 (CEST) X-Auth-Info: i8MAyR+0e7MaolCZKGeWS1DsYHK4/+0PIjeLpjIO47Y= Received: from mail.denx.de (host-82-135-33-74.customer.m-online.net [82.135.33.74]) by smtp-auth.mnet-online.de (Postfix) with ESMTP id EFE839028D; Tue, 12 May 2009 11:42:48 +0200 (CEST) Received: from pollux.denx.de (pollux [192.168.1.1]) by mail.denx.de (Postfix) with ESMTP id BFCC2404F2DB; Tue, 12 May 2009 11:42:48 +0200 (CEST) Received: by pollux.denx.de (Postfix, from userid 504) id B6A9010129E51; Tue, 12 May 2009 11:42:48 +0200 (CEST) Message-Id: <20090512094248.614764546@denx.de> User-Agent: quilt/0.47-1 Date: Tue, 12 May 2009 11:42:49 +0200 From: Wolfgang Grandegger To: netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Wolfgang Grandegger Subject: [PATCH 1/2] iproute2: Fixes an issue with cross-compilation References: <20090512094248.439786706@denx.de> Content-Disposition: inline; filename=01-cross-compilation.patch Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Wolfgang Grandegger --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: iproute2/Makefile =================================================================== --- iproute2.orig/Makefile +++ iproute2/Makefile @@ -1,4 +1,5 @@ DESTDIR=/usr/ +ROOTDIR=$(DESTDIR) LIBDIR=/usr/lib/ SBINDIR=/sbin CONFDIR=/etc/iproute2 @@ -7,7 +8,7 @@ MANDIR=/share/man ARPDDIR=/var/lib/arpd # Path to db_185.h include -DBM_INCLUDE:=/usr/include +DBM_INCLUDE:=$(ROOTDIR)/usr/include DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\"