Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 17 Jun 2002 11:52:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 17 Jun 2002 11:52:25 -0400 Received: from chaos.physics.uiowa.edu ([128.255.34.189]:7888 "EHLO chaos.physics.uiowa.edu") by vger.kernel.org with ESMTP id ; Mon, 17 Jun 2002 11:52:25 -0400 Date: Mon, 17 Jun 2002 10:52:20 -0500 (CDT) From: Kai Germaschewski X-X-Sender: kai@chaos.physics.uiowa.edu To: Martin Dalecki cc: linux-kernel@vger.kernel.org Subject: Re: 2.5.22 broke modversions In-Reply-To: <3D0E02C2.5010304@evision-ventures.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1125 Lines: 34 On Mon, 17 Jun 2002, Martin Dalecki wrote: > The following diff clutter appears in every diff after make menuconfig > > diff -urN linux-2.5.21/scripts/lxdialog/.checklist.o.cmd > linux/scripts/lxdialog/.checklist.o.cmd > [..] Ah, okay. We don't remove .*.cmd in scripts/dialog on make clean, since we want lxdialog to survive the make clean. Unfortunately, that means we didn't remove those at all. --Kai ===== Makefile 1.265 vs edited ===== --- 1.265/Makefile Mon Jun 17 10:26:40 2002 +++ edited/Makefile Mon Jun 17 10:49:48 2002 @@ -622,7 +622,8 @@ mrproper: clean archmrproper @echo 'Making mrproper' - @find . \( -size 0 -o -name .depend \) -type f -print | xargs rm -f + @find . \( -size 0 -o -name .depend -o -name .\*.cmd \) \ + -type f -print | xargs rm -f @rm -f $(MRPROPER_FILES) @rm -rf $(MRPROPER_DIRS) @$(MAKE) -C Documentation/DocBook mrproper - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/