unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* make install on existing emacs installation issue: using MinGW
@ 2007-07-20  3:00 dhruva
  2007-07-20  9:35 ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: dhruva @ 2007-07-20  3:00 UTC (permalink / raw)
  To: Emacs Devel

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!

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: make install on existing emacs installation issue: using MinGW
  2007-07-20  3:00 make install on existing emacs installation issue: using MinGW dhruva
@ 2007-07-20  9:35 ` Eli Zaretskii
  2007-07-20  9:41   ` dhruva
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Eli Zaretskii @ 2007-07-20  9:35 UTC (permalink / raw)
  To: dhruva; +Cc: emacs-devel

> Date: Fri, 20 Jul 2007 08:30:37 +0530
> From: dhruva <dhruvakm@gmail.com>
> 
>  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.

Thank you very much for your report and the patch.

I've seen the first post as well, and will install it soon.  Please be
a bit more patient, I don't always have enough free time to react as
fast as I wish to.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: make install on existing emacs installation issue: using MinGW
  2007-07-20  9:35 ` Eli Zaretskii
@ 2007-07-20  9:41   ` dhruva
  2007-07-20  9:43   ` Eli Zaretskii
  2007-07-20 11:16   ` Eli Zaretskii
  2 siblings, 0 replies; 5+ messages in thread
From: dhruva @ 2007-07-20  9:41 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Emacs Devel

Hi Eli,

> I've seen the first post as well, and will install it soon.  Please be
> a bit more patient, I don't always have enough free time to react as
> fast as I wish to.

I am not trying to pressurize anyone. I just thought since I had sent
a patch in a non-standard format, it was being ignored. It took
sometime for me to configure (mercurial) to get a contextual diff as
expected in the emacs development list.

with best regards,
dhruva


-- 
Dhruva Krishnamurthy
Contents reflect my personal views only!

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: make install on existing emacs installation issue: using MinGW
  2007-07-20  9:35 ` Eli Zaretskii
  2007-07-20  9:41   ` dhruva
@ 2007-07-20  9:43   ` Eli Zaretskii
  2007-07-20 11:16   ` Eli Zaretskii
  2 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2007-07-20  9:43 UTC (permalink / raw)
  To: dhruvakm, emacs-devel

> Date: Fri, 20 Jul 2007 12:35:43 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: emacs-devel@gnu.org
> 
> > Date: Fri, 20 Jul 2007 08:30:37 +0530
> > From: dhruva <dhruvakm@gmail.com>
> > 
> >  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.
> 
> Thank you very much for your report and the patch.
> 
> I've seen the first post as well, and will install it soon.  Please be
> a bit more patient, I don't always have enough free time to react as
> fast as I wish to.

Oh, and of course apologies for not considering this situation in the
first place, when I worked on the change in lisp/makefile.w32-in.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: make install on existing emacs installation issue: using MinGW
  2007-07-20  9:35 ` Eli Zaretskii
  2007-07-20  9:41   ` dhruva
  2007-07-20  9:43   ` Eli Zaretskii
@ 2007-07-20 11:16   ` Eli Zaretskii
  2 siblings, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2007-07-20 11:16 UTC (permalink / raw)
  To: dhruvakm, emacs-devel

> Date: Fri, 20 Jul 2007 12:35:43 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: emacs-devel@gnu.org
> 
> > Date: Fri, 20 Jul 2007 08:30:37 +0530
> > From: dhruva <dhruvakm@gmail.com>
> > 
> >  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.
> 
> Thank you very much for your report and the patch.
> 
> I've seen the first post as well, and will install it soon.

Done.

Thanks again for your report and the patch.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-07-20 11:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-20  3:00 make install on existing emacs installation issue: using MinGW dhruva
2007-07-20  9:35 ` Eli Zaretskii
2007-07-20  9:41   ` dhruva
2007-07-20  9:43   ` Eli Zaretskii
2007-07-20 11:16   ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).