From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id D42863858004 for ; Wed, 31 Aug 2022 12:10:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D42863858004 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id C182B21B27 for ; Wed, 31 Aug 2022 12:10:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1661947801; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=vpZQsx4lieh1hSWc8dOnBOaJhXWSkX3r0foFV8//gHA=; b=sT2rx3SPE6nozwi8dfGJJS430LNTbsrj9ybF7jLLEOewpF1m21VusRBE72ajaKweeypbHT 4v/sk8YwAppSqKD7NUXWbWwhlh/VEfs5YrlLneXPZXK/m637NXFIiHEwjci8i612gtTdOu DuvK/uUz8KWGXY6NJM8qVlUfS86WVuU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1661947801; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=vpZQsx4lieh1hSWc8dOnBOaJhXWSkX3r0foFV8//gHA=; b=Fg0IuljSaBqkvVVFTdnTCzT56a6/SoJlTJmwQZalsBXaEF1JjjxG6ed4s8b+Ao2DBPEjGN eaquwFpCvs+3mbAA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id ABF8A1332D for ; Wed, 31 Aug 2022 12:10:01 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id MFbVKJlPD2NTEgAAMHmgww (envelope-from ) for ; Wed, 31 Aug 2022 12:10:01 +0000 Message-ID: <569deff2-8a72-0661-9685-eb959167c7ff@suse.cz> Date: Wed, 31 Aug 2022 14:10:01 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.0 Content-Language: en-US To: GCC Development From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: Weird instability of automake-1.15.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_NUMSUBJECT,KAM_SHORT,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi. I see a weird behavior when I run: AUTOCONF=autoconf-2.69 ~/bin/automake-1.15.1/bin/automake in one of my gcc git repos: $ ~/Programming/gcc/gotools> AUTOCONF=autoconf-2.69 ~/bin/automake-1.15.1/bin/automake $ git diff | cat (no output) However, if I clone a fresh repo I see: $ git clone git://gcc.gnu.org/git/gcc.git --depth=1 $ cd gotools/ $ AUTOCONF=autoconf-2.69 ~/bin/automake-1.15.1/bin/automake $ git diff | cat diff --git a/gotools/Makefile.in b/gotools/Makefile.in index 2783b91ef..9739a7952 100644 --- a/gotools/Makefile.in +++ b/gotools/Makefile.in @@ -704,8 +704,8 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -@NATIVE_FALSE@install-exec-local: @NATIVE_FALSE@uninstall-local: +@NATIVE_FALSE@install-exec-local: clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-noinstPROGRAMS \ Can please anybody reproduce that? I've also tried touching all files in my original repo, but still, no change. Cheers, Martin