From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Han Boetes Newsgroups: gmane.emacs.devel Subject: two patches for the Makefiles Date: Sat, 6 Nov 2004 22:00:29 +0100 Message-ID: <20041106210051.GM1275@boetes.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1099774894 24453 80.91.229.6 (6 Nov 2004 21:01:34 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 6 Nov 2004 21:01:34 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 06 22:01:21 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CQXgX-0002Km-00 for ; Sat, 06 Nov 2004 22:01:21 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CQXon-0004hc-R6 for ged-emacs-devel@m.gmane.org; Sat, 06 Nov 2004 16:09:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CQXoP-0004fd-R6 for emacs-devel@gnu.org; Sat, 06 Nov 2004 16:09:29 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CQXoO-0004eZ-My for emacs-devel@gnu.org; Sat, 06 Nov 2004 16:09:28 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CQXoO-0004eE-Ip for emacs-devel@gnu.org; Sat, 06 Nov 2004 16:09:28 -0500 Original-Received: from [213.51.128.196] (helo=smtpq1.home.nl) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CQXfo-0005Il-UP for emacs-devel@gnu.org; Sat, 06 Nov 2004 16:00:37 -0500 Original-Received: from [213.51.128.135] (port=34331 helo=smtp4.home.nl) by smtpq1.home.nl with esmtp (Exim 4.30) id 1CQXfn-00036T-94 for emacs-devel@gnu.org; Sat, 06 Nov 2004 22:00:35 +0100 Original-Received: from cc15467-a.groni1.gr.home.nl ([217.120.147.78]:12638 helo=boetes.org) by smtp4.home.nl with smtp (Exim 4.30) id 1CQXfk-0001dF-LP for emacs-devel@gnu.org; Sat, 06 Nov 2004 22:00:32 +0100 Original-Received: (qmail 15340 invoked by uid 1000); 6 Nov 2004 21:00:52 -0000 Original-To: emacs-devel@gnu.org Mail-Followup-To: emacs-devel@gnu.org Content-Disposition: inline User-Agent: Mutt/1.5.6i X-AtHome-MailScanner-Information: Neem contact op met support@home.nl voor meer informatie X-AtHome-MailScanner: Found to be clean X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:29485 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29485 Hi, Here are two patches for the emacs Makefiles: This patch aims to make sure the only file which is forgotten after a make maintainer-clean is also removed. --- orig/lisp/Makefile.in +++ mod/lisp/Makefile.in @@ -312,7 +312,7 @@ fi maintainer-clean: - cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL) + -rm -f ./Makefile; cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL) # Generate/update files for the bootstrap process. This patch causes that make install doesn't relink emacs before installing emacs. --- orig/src/Makefile.in +++ mod/src/Makefile.in @@ -969,10 +969,8 @@ to both ensure that lwlib gets remade based on its dependencies in its own makefile, and remake temacs if lwlib gets changed by this. */ -stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU) +stamp-oldxmenu: ${OLDXMENU} touch stamp-oldxmenu -/* Supply an ordering for parallel make. */ -../src/$(OLDXMENU): ${OLDXMENU} #ifdef USE_X_TOOLKIT $(OLDXMENU): really-lwlib # Han