From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753451AbbGJIP0 (ORCPT ); Fri, 10 Jul 2015 04:15:26 -0400 Received: from terminus.zytor.com ([198.137.202.10]:47760 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753924AbbGJIPE (ORCPT ); Fri, 10 Jul 2015 04:15:04 -0400 Date: Fri, 10 Jul 2015 01:14:43 -0700 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: jolsa@redhat.com, hpa@zytor.com, namhyung@kernel.org, linux-kernel@vger.kernel.org, mingo@kernel.org, acme@redhat.com, bp@suse.de, eranian@google.com, fweisbec@gmail.com, dsahern@gmail.com, adrian.hunter@intel.com, tglx@linutronix.de Reply-To: hpa@zytor.com, jolsa@redhat.com, namhyung@kernel.org, linux-kernel@vger.kernel.org, acme@redhat.com, mingo@kernel.org, bp@suse.de, eranian@google.com, dsahern@gmail.com, fweisbec@gmail.com, adrian.hunter@intel.com, tglx@linutronix.de To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/urgent] perf tools: Fix the detached tarball wrt rbtree copy Git-Commit-ID: f3efe3a07e0060dc5d6c41644733e49c7bd50a5b X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: f3efe3a07e0060dc5d6c41644733e49c7bd50a5b Gitweb: http://git.kernel.org/tip/f3efe3a07e0060dc5d6c41644733e49c7bd50a5b Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 9 Jul 2015 16:23:57 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 9 Jul 2015 16:23:57 -0300 perf tools: Fix the detached tarball wrt rbtree copy The python binding build process was still looking at the kernel rbtree.c file, so, when doing a in-tree build it would work, but when creating a tarball using tools/perf/MANIFEST as the contents list and then trying to build the resulting detached sources, it failed. Fix it by removing one level of indirection from rbtree.c in the tools/perf/util/python-ext-sources file. Cc: Adrian Hunter Cc: Borislav Petkov Cc: David Ahern Cc: Frederic Weisbecker Cc: Jiri Olsa Cc: Namhyung Kim Cc: Stephane Eranian Link: http://lkml.kernel.org/n/tip-8u83c2k5guyhxdlkaaqis8k4@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/python-ext-sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/python-ext-sources b/tools/perf/util/python-ext-sources index e23ded4..de05e04 100644 --- a/tools/perf/util/python-ext-sources +++ b/tools/perf/util/python-ext-sources @@ -19,5 +19,5 @@ util/rblist.c util/stat.c util/strlist.c util/trace-event.c -../../lib/rbtree.c +../lib/rbtree.c util/string.c