From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 86DB8C352A5 for ; Mon, 10 Feb 2020 13:25:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 571AF20733 for ; Mon, 10 Feb 2020 13:25:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581341117; bh=mKbHDyqHzQt1bToSX31/M4PiWonwYV2QnRGfpBQxjpo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=aIFQuRRbXsdKCTI8u1IJN6ttY6oTOC+TRvEs04TEEDK4kZWu6UTDa4WENtyD1TmQP T10wMxAjjbC2JnbCVet0p130XXzc2R2Ijxf/YPQHyLCK4tz/Mj2ZrT3SDbX35tOPe+ GUNpwSjk5Ad8EjNqHSvKubPPZT8hWGNxp3AeELUU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731214AbgBJNZN (ORCPT ); Mon, 10 Feb 2020 08:25:13 -0500 Received: from mail.kernel.org ([198.145.29.99]:57520 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728573AbgBJMg5 (ORCPT ); Mon, 10 Feb 2020 07:36:57 -0500 Received: from localhost (unknown [209.37.97.194]) (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 DFBC824671; Mon, 10 Feb 2020 12:36:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581338217; bh=mKbHDyqHzQt1bToSX31/M4PiWonwYV2QnRGfpBQxjpo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R3Tt2A6IQgvHRg4QAhqXHg+OFDcP4hq0G6gRpA4rVFp1QmKL38RBQPRsew4MRexSJ SerKzQqdvdF1sfWOET9jyIPLN7Q8bKQcTbic2qucdqDbYYjwnuP47jVVgoy0EVmdHC p9MWB3WHbGHFJHWThNRP73DZoa1Xoql/wBWSULzo= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Olof Johansson , Josh Poimboeuf , Ingo Molnar Subject: [PATCH 5.4 040/309] objtool: Silence build output Date: Mon, 10 Feb 2020 04:29:56 -0800 Message-Id: <20200210122409.934379462@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200210122406.106356946@linuxfoundation.org> References: <20200210122406.106356946@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Olof Johansson commit 6ec14aa7a58a1c2fb303692f8cb1ff82d9abd10a upstream. The sync-check.sh script prints out the path due to a "cd -" at the end of the script, even on silent builds. This isn't even needed, since the script is executed in our build instead of sourced (so it won't change the working directory of the surrounding build anyway). Just remove the cd to make the build silent. Fixes: 2ffd84ae973b ("objtool: Update sync-check.sh from perf's check-headers.sh") Signed-off-by: Olof Johansson Signed-off-by: Josh Poimboeuf Signed-off-by: Ingo Molnar Link: https://lore.kernel.org/r/cb002857fafa8186cfb9c3e43fb62e4108a1bab9.1579543924.git.jpoimboe@redhat.com Signed-off-by: Greg Kroah-Hartman --- tools/objtool/sync-check.sh | 2 -- 1 file changed, 2 deletions(-) --- a/tools/objtool/sync-check.sh +++ b/tools/objtool/sync-check.sh @@ -47,5 +47,3 @@ check arch/x86/include/asm/inat.h '- check arch/x86/include/asm/insn.h '-I "^#include [\"<]\(asm/\)*inat.h[\">]"' check arch/x86/lib/inat.c '-I "^#include [\"<]\(../include/\)*asm/insn.h[\">]"' check arch/x86/lib/insn.c '-I "^#include [\"<]\(../include/\)*asm/in\(at\|sn\).h[\">]"' - -cd -