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=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 B18D6C35247 for ; Mon, 3 Feb 2020 16:39:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7D07720CC7 for ; Mon, 3 Feb 2020 16:39:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580747957; bh=rEzypx3orKL+EW6WN2sORbNCtEDt/8oE3s4kjLObZcs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=M30ApKR0jTDKSt4PiiLzzAv7m+Ve2seA/tOjtx+w67jm7KUMUPPjyE/a1zEsXF7Dh QTP9OtDdaOjQKPKysjTyLPDhlwnqSWaIAIrd4WJg8Fe07PeT4NyBuaWO4vzfI/IfDM F3EOYCDZTbhDBmrFWI8G2E41go/PrtSXM9ecWh3c= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731388AbgBCQhs (ORCPT ); Mon, 3 Feb 2020 11:37:48 -0500 Received: from mail.kernel.org ([198.145.29.99]:53148 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731349AbgBCQhe (ORCPT ); Mon, 3 Feb 2020 11:37:34 -0500 Received: from localhost (unknown [104.132.45.99]) (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 9F80C2082E; Mon, 3 Feb 2020 16:37:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580747854; bh=rEzypx3orKL+EW6WN2sORbNCtEDt/8oE3s4kjLObZcs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kg0NlrdlztPI5sE2fHoqn/S1AKy+q4zVrdrhpzWdVyurFTzYvz5wCVJiTgwi5Moi9 /UKT2y9++DhLXu55LexEfOC/PIYrFoCC7s15co/Tqc7SlKZqV260LcBX3B5zzp3i7H NoACdA7dkVkDp1DrzthCAA2+4Ebe/asLeki+hz+s= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Ilie Halip , Paul Walmsley , Sasha Levin Subject: [PATCH 5.4 57/90] riscv: delete temporary files Date: Mon, 3 Feb 2020 16:20:00 +0000 Message-Id: <20200203161924.646965399@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200203161917.612554987@linuxfoundation.org> References: <20200203161917.612554987@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: Ilie Halip [ Upstream commit 95f4d9cced96afa9c69b3da8e79e96102c84fc60 ] Temporary files used in the VDSO build process linger on even after make mrproper: vdso-dummy.o.tmp, vdso.so.dbg.tmp. Delete them once they're no longer needed. Signed-off-by: Ilie Halip Signed-off-by: Paul Walmsley Signed-off-by: Sasha Levin --- arch/riscv/kernel/vdso/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/riscv/kernel/vdso/Makefile b/arch/riscv/kernel/vdso/Makefile index 49a5852fd07dd..33b16f4212f7a 100644 --- a/arch/riscv/kernel/vdso/Makefile +++ b/arch/riscv/kernel/vdso/Makefile @@ -58,7 +58,8 @@ quiet_cmd_vdsold = VDSOLD $@ cmd_vdsold = $(CC) $(KBUILD_CFLAGS) $(call cc-option, -no-pie) -nostdlib -nostartfiles $(SYSCFLAGS_$(@F)) \ -Wl,-T,$(filter-out FORCE,$^) -o $@.tmp && \ $(CROSS_COMPILE)objcopy \ - $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ + $(patsubst %, -G __vdso_%, $(vdso-syms)) $@.tmp $@ && \ + rm $@.tmp # install commands for the unstripped file quiet_cmd_vdso_install = INSTALL $@ -- 2.20.1