From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85534 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: Re: autoloads only generated on every 2nd make Date: Mon, 26 Jan 2015 16:14:10 +0100 Message-ID: <87oapl1sn1.fsf@gnu.org> References: <87wq6qfidr.fsf@thinkpad-t440p.tsdh.org> <87bnlmji1j.fsf@building.gnus.org> <87twze2es3.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1422285304 9152 80.91.229.3 (26 Jan 2015 15:15:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 26 Jan 2015 15:15:04 +0000 (UTC) Cc: ding@gnus.org To: Lars Ingebrigtsen Original-X-From: ding-owner+M33776@lists.math.uh.edu Mon Jan 26 16:15:00 2015 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YFlNS-0006lp-Ac for ding-account@gmane.org; Mon, 26 Jan 2015 16:14:58 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1YFlMn-00054N-N2; Mon, 26 Jan 2015 09:14:17 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YFlMm-00054A-DP for ding@lists.math.uh.edu; Mon, 26 Jan 2015 09:14:16 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1YFlMl-0004Jm-4M for ding@lists.math.uh.edu; Mon, 26 Jan 2015 09:14:16 -0600 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1YFlMi-0002ei-H6; Mon, 26 Jan 2015 16:14:12 +0100 Original-Received: from thinkpad-t440p (dhcp99.uni-koblenz.de [141.26.71.99]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by deliver.uni-koblenz.de (Postfix) with ESMTPSA id B09C11A83FD; Mon, 26 Jan 2015 16:14:10 +0100 (CET) Mail-Followup-To: Lars Ingebrigtsen , ding@gnus.org In-Reply-To: <87twze2es3.fsf@gnu.org> (Tassilo Horn's message of "Mon, 26 Jan 2015 08:15:56 +0100") User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) X-Spam-Score: -4.2 (----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85534 Archived-At: Tassilo Horn writes: > I'll go investigating with the make guys. Ok, the problem was that make uses a file cache which does not get updated if a recipe deletes files that have nothing to do with the target. Thus with "make clean-some gnus-load.el" make's cache still thinks gnus-load.el exists and is up-to-date if it has been so before clean-some. I've committed a fix which uses recursive make calls for the gnus-load.el target so that this is always executed with a file cache reflecting the actual situation on the file system [1]. Bye, Tassilo [1] Oh, and sorry for the second commit completing the ChangeLog entry and the non-ChangeLog formatted commit message in the first commit.