From patchwork Wed Jun 12 18:19:28 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Rostedt X-Patchwork-Id: 10990621 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 972C914E5 for ; Wed, 12 Jun 2019 18:20:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8A86F26E7B for ; Wed, 12 Jun 2019 18:20:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7F429288C3; Wed, 12 Jun 2019 18:20:21 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 171E0288C6 for ; Wed, 12 Jun 2019 18:20:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726774AbfFLSUU (ORCPT ); Wed, 12 Jun 2019 14:20:20 -0400 Received: from mail.kernel.org ([198.145.29.99]:46874 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726735AbfFLSUU (ORCPT ); Wed, 12 Jun 2019 14:20:20 -0400 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C007E20B7C; Wed, 12 Jun 2019 18:20:19 +0000 (UTC) Received: from rostedt by gandalf.local.home with local (Exim 4.92) (envelope-from ) id 1hb7r8-00057b-VB; Wed, 12 Jun 2019 14:20:18 -0400 Message-Id: <20190612182018.861661984@goodmis.org> User-Agent: quilt/0.65 Date: Wed, 12 Jun 2019 14:19:28 -0400 From: Steven Rostedt To: linux-trace-devel@vger.kernel.org Subject: [PATCH 1/3] trace-cmd: Fix typo in Makefile bidr to bdir References: <20190612181927.608151291@goodmis.org> MIME-Version: 1.0 Sender: linux-trace-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-trace-devel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: "Steven Rostedt (VMware)" The order-only prerequisit to $(bdir)/include has a typo of "$(bidr)" instead of being "$(bdir)" Signed-off-by: Steven Rostedt (VMware) Reviewed-by: Tzvetomir Stoyanov --- tracecmd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracecmd/Makefile b/tracecmd/Makefile index 93b373d58155..bcd437a26b98 100644 --- a/tracecmd/Makefile +++ b/tracecmd/Makefile @@ -47,7 +47,7 @@ all: $(TARGETS) $(bdir): @mkdir -p $(bdir) -$(bdir)/include: | $(bidr) +$(bdir)/include: | $(bdir) @mkdir -p $(bdir)/include $(TC_VERSION): force | $(bdir)/include