From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id BcTlEc69lmDpZAAAWB0awg (envelope-from ) for ; Sat, 08 May 2021 12:35:26 -0400 Received: by simark.ca (Postfix, from userid 112) id 3B3671F11C; Sat, 8 May 2021 12:35:26 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 76E4D1E813 for ; Sat, 8 May 2021 12:35:25 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 8FBF5385782A; Sat, 8 May 2021 16:35:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8FBF5385782A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1620491724; bh=FLsb1aPQwf9ElDYvTnzEXssXNv2whh5w3ZvkxbnnSys=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=mrg1C86OwqarIiwtFHeOaKPSa2vIFA0LUSZkQi6fr6tuftIRlZH29W0GLppXMmssz Dps4JTFtgr6zL31DPFAaJ9a3IxhQt4Dt9eGhsrWa6FGogSFFESH/3icdKziv9wDzJv u8VOj2j58ieFMyvzUEK817lFT9FIFO2GInP2SSrI= Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 80779385782A for ; Sat, 8 May 2021 16:35:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 80779385782A Received: from vapier.lan (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 588D3335CFF for ; Sat, 8 May 2021 16:35:20 +0000 (UTC) To: gdb-patches@sourceware.org Subject: [PATCH/committed] sim: touch modules target Date: Sat, 8 May 2021 12:35:19 -0400 Message-Id: <20210508163519.19783-1-vapier@gentoo.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Mike Frysinger via Gdb-patches Reply-To: Mike Frysinger Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" If there are no updates to the file, touch the result so we don't keep trying to regenerate it. --- sim/common/ChangeLog | 4 ++++ sim/common/Make-common.in | 1 + 2 files changed, 5 insertions(+) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 1c0e44f2c1de..4fb31af3b182 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2021-05-08 Mike Frysinger + + * Make-common.in (modules.c): Touch $@ at the end. + 2021-05-08 Mike Frysinger * cgen-trace.c (sim_cgen_disassemble_insn): Change %x to PRIxTA. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 4edc54ca40e0..56b36b235721 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -481,6 +481,7 @@ modules.c: Makefile $(SIM_OBJS:.o=.c) ) >$@.tmp $(SHELL) $(srcroot)/move-if-change $@.tmp $@ @rm -f $@.l-tmp $@.tmp + touch $@ # CGEN support. -- 2.31.1