Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755939Ab3EQU17 (ORCPT ); Fri, 17 May 2013 16:27:59 -0400 Received: from mail-la0-f50.google.com ([209.85.215.50]:40252 "EHLO mail-la0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755670Ab3EQU15 (ORCPT ); Fri, 17 May 2013 16:27:57 -0400 From: Rabin Vincent To: acme@redhat.com, mingo@kernel.org Cc: bp@suse.de, linux-kernel@vger.kernel.org, Rabin Vincent Subject: [PATCH] tools lib lk: respect CROSS_COMPILE Date: Fri, 17 May 2013 22:27:44 +0200 Message-Id: <1368822464-4887-1-git-send-email-rabin@rab.in> X-Mailer: git-send-email 1.8.1.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 762 Lines: 29 Make lk use CROSS_COMPILE, in order to be able to cross compile perf again. Signed-off-by: Rabin Vincent --- tools/lib/lk/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/lib/lk/Makefile b/tools/lib/lk/Makefile index 926cbf3..2c5a197 100644 --- a/tools/lib/lk/Makefile +++ b/tools/lib/lk/Makefile @@ -1,5 +1,8 @@ include ../../scripts/Makefile.include +CC = $(CROSS_COMPILE)gcc +AR = $(CROSS_COMPILE)ar + # guard against environment variables LIB_H= LIB_OBJS= -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/