From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753994AbbE1Lqz (ORCPT ); Thu, 28 May 2015 07:46:55 -0400 Received: from bes.se.axis.com ([195.60.68.10]:59753 "EHLO bes.se.axis.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753861AbbE1Lqd (ORCPT ); Thu, 28 May 2015 07:46:33 -0400 From: Rabin Vincent To: , , , CC: , , Rabin Vincent Subject: [PATCH] perf: fix MIPS build Date: Thu, 28 May 2015 13:46:13 +0200 Message-ID: <1432813573-2204-1-git-send-email-rabin.vincent@axis.com> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 5e8c0fb6a ("perf build: Add arch x86 objects building") added empty Build files to several architectures, but MIPS got left out. This leads to a build of perf for MIPS failing with the following errors: tools/build/Makefile.build:40: arch/mips/Build: No such file or directory make[4]: *** No rule to make target `arch/mips/Build'. Stop. Add an empty Build file to fix this. Signed-off-by: Rabin Vincent --- 0 files changed create mode 100644 tools/perf/arch/mips/Build diff --git a/tools/perf/arch/mips/Build b/tools/perf/arch/mips/Build new file mode 100644 index 0000000..e69de29 -- 1.7.10.4