From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: dhruva Newsgroups: gmane.emacs.devel Subject: make install on existing emacs installation issue: using MinGW Date: Fri, 20 Jul 2007 08:30:37 +0530 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1184900449 21828 80.91.229.12 (20 Jul 2007 03:00:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 20 Jul 2007 03:00:49 +0000 (UTC) To: "Emacs Devel" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 20 05:00:48 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IBijX-0001e2-2W for ged-emacs-devel@m.gmane.org; Fri, 20 Jul 2007 05:00:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBijW-0001H0-CS for ged-emacs-devel@m.gmane.org; Thu, 19 Jul 2007 23:00:46 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IBijS-0001BD-7I for emacs-devel@gnu.org; Thu, 19 Jul 2007 23:00:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IBijP-00012m-5r for emacs-devel@gnu.org; Thu, 19 Jul 2007 23:00:40 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IBijO-00012e-Vu for emacs-devel@gnu.org; Thu, 19 Jul 2007 23:00:39 -0400 Original-Received: from ug-out-1314.google.com ([66.249.92.169]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IBijO-0005gN-Fi for emacs-devel@gnu.org; Thu, 19 Jul 2007 23:00:38 -0400 Original-Received: by ug-out-1314.google.com with SMTP id 34so619853ugf for ; Thu, 19 Jul 2007 20:00:37 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=j/b+1kBc8OZdnftm2e8svpmWOGMtZ9l0xtPqtPvAxK4q4iFxxdCYCFQNOkZh2p2mN65SXZo9PTAY60UDchiv5p5Cd758l0g7y7P8XGVxnvo3kAn8QR5jYO3Yu1czNC6Q6X0LKMrRNzLHwthLlG5h3iUnEY1/HbEYStiIVskDW84= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=QxJom71h36PIQ35pUmrOF59PaXMbYu9vlIR/giNuzSGlrATMey8AbAn/WRphpMLzILA2L961jw9NMKkGg6SVbuWGSL8kKRrI7QoFyVyuue8+TCDPKftOGkslMKRhl5DIYImerC8zLEtWgDIwd96aWkm7CMHx9u4eW4xhspzeCAA= Original-Received: by 10.78.136.9 with SMTP id j9mr1294hud.1184900437426; Thu, 19 Jul 2007 20:00:37 -0700 (PDT) Original-Received: by 10.78.206.13 with HTTP; Thu, 19 Jul 2007 20:00:37 -0700 (PDT) Content-Disposition: inline X-detected-kernel: Linux 2.4-2.6 (Google crawlbot) 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: news.gmane.org gmane.emacs.devel:75147 Archived-At: Hi, I had reported a problem in "make install" over an existing installation using MinGW on W-XP. I had provided a diff, I am reposting it in contextual format for convinience. -dky diff -Nprcw emacs.6b5111f90a96/lisp/makefile.w32-in emacs/lisp/makefile.w32-in *** emacs.6b5111f90a96/lisp/makefile.w32-in 2007-07-20 08:14:53.680500000 +0530 --- emacs/lisp/makefile.w32-in 2007-07-20 08:14:53.696125000 +0530 *************** install-lisp-SH: *** 434,440 **** install-lisp-CMD: cp -f *.el "$(INSTALL_DIR)/lisp" ! for %%f in ($(WINS)) do mkdir "$(INSTALL_DIR)/lisp/%%f" for %%f in ($(WINS)) do cp -f %%f/*.el "$(INSTALL_DIR)/lisp/%%f" for %%f in (. $(WINS)) do cp -f %%f/*.elc "$(INSTALL_DIR)/lisp/%%f" --- 434,440 ---- install-lisp-CMD: cp -f *.el "$(INSTALL_DIR)/lisp" ! for %%f in ($(WINS)) do if not exist "$(INSTALL_DIR)/lisp/%%f" mkdir "$(INSTALL_DIR)/lisp/%%f" for %%f in ($(WINS)) do cp -f %%f/*.el "$(INSTALL_DIR)/lisp/%%f" for %%f in (. $(WINS)) do cp -f %%f/*.elc "$(INSTALL_DIR)/lisp/%%f" -- Dhruva Krishnamurthy Contents reflect my personal views only!