unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Bootstrapping Emacs-CVS on Cygwin
@ 2007-07-26 20:44 Angelo Graziosi
  2007-07-27 10:27 ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Angelo Graziosi @ 2007-07-26 20:44 UTC (permalink / raw)
  To: emacs-devel


For the sake of completeness, I want to flag that bootstrapping Emacs
22.1.50 20070726-cvs (on Cygwin), in the build log, I have noted this:

========================================
...
	else true; fi
Copying etc/DOC-22.1.50.1 to
/tmp/emacs/inst/usr/local/emacs/share/emacs/22.1.50/etc ...
DOC-22.1.50.1
rm: cannot remove `DOC': No such file or directory
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

make: [install-arch-indep] Error 1 (ignored)
                          ^^^^^^^^^
unset CDPATH; \
...
========================================

This happens while running 'make install...'.

Perhaps it should move instead of copy 'etc/DOC-22.1.50.1' or it should
remove 'DOC-22.1.50.1' instead of 'DOC'.

I any case, the error is ignored and does not seem to have a negative
effect on the bootstrap!



Cheers,

   Angelo.

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

* Re: Bootstrapping Emacs-CVS on Cygwin
  2007-07-26 20:44 Bootstrapping Emacs-CVS on Cygwin Angelo Graziosi
@ 2007-07-27 10:27 ` Eli Zaretskii
  2007-07-27 11:19   ` Angelo Graziosi
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2007-07-27 10:27 UTC (permalink / raw)
  To: Angelo Graziosi; +Cc: emacs-devel

> Date: Thu, 26 Jul 2007 22:44:59 +0200 (MET DST)
> From: Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>
> 
> 
> Copying etc/DOC-22.1.50.1 to
> /tmp/emacs/inst/usr/local/emacs/share/emacs/22.1.50/etc ...
> DOC-22.1.50.1
> rm: cannot remove `DOC': No such file or directory
>     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> 
> make: [install-arch-indep] Error 1 (ignored)
>                           ^^^^^^^^^
> unset CDPATH; \
> ...
> ========================================
> 
> This happens while running 'make install...'.

Looks like this is on purpose, as this comment in Makefile.in says:

    ## Note that we copy DOC* and then delete DOC
    ## as a workaround for a bug in tar on Ultrix 4.2.

The relevant line of the install-arch-indep commands is this:

    if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi

and in your case, there's DOC-22.1.50.1, so Make tries to "rm DOC".

Maybe we should use "rm -f" to avoid the error message?

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

* Re: Bootstrapping Emacs-CVS on Cygwin
  2007-07-27 10:27 ` Eli Zaretskii
@ 2007-07-27 11:19   ` Angelo Graziosi
  2007-07-28  8:13     ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Angelo Graziosi @ 2007-07-27 11:19 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel



On Fri, 27 Jul 2007, Eli Zaretskii wrote:

> > Date: Thu, 26 Jul 2007 22:44:59 +0200 (MET DST)
> > From: Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>
> >
> >
> > Copying etc/DOC-22.1.50.1 to
> > /tmp/emacs/inst/usr/local/emacs/share/emacs/22.1.50/etc ...
> > DOC-22.1.50.1
> > rm: cannot remove `DOC': No such file or directory
> >     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> >
> > make: [install-arch-indep] Error 1 (ignored)
> >                           ^^^^^^^^^
> > unset CDPATH; \
> > ...
> > ========================================
> >
> > This happens while running 'make install...'.
>
> Looks like this is on purpose, as this comment in Makefile.in says:
>
>     ## Note that we copy DOC* and then delete DOC
>     ## as a workaround for a bug in tar on Ultrix 4.2.
>
> The relevant line of the install-arch-indep commands is this:
>
>     if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi
>
> and in your case, there's DOC-22.1.50.1, so Make tries to "rm DOC".
>
> Maybe we should use "rm -f" to avoid the error message?

Probably, yes!



Cheers,

   Angelo.


>
>

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

* Re: Bootstrapping Emacs-CVS on Cygwin
  2007-07-27 11:19   ` Angelo Graziosi
@ 2007-07-28  8:13     ` Eli Zaretskii
  0 siblings, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2007-07-28  8:13 UTC (permalink / raw)
  To: Angelo Graziosi; +Cc: emacs-devel

> Date: Fri, 27 Jul 2007 13:19:11 +0200 (MET DST)
> From: Angelo Graziosi <Angelo.Graziosi@roma1.infn.it>
> cc: emacs-devel@gnu.org
> 
> > The relevant line of the install-arch-indep commands is this:
> >
> >     if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi
> >
> > and in your case, there's DOC-22.1.50.1, so Make tries to "rm DOC".
> >
> > Maybe we should use "rm -f" to avoid the error message?
> 
> Probably, yes!

Done.

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

end of thread, other threads:[~2007-07-28  8:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-26 20:44 Bootstrapping Emacs-CVS on Cygwin Angelo Graziosi
2007-07-27 10:27 ` Eli Zaretskii
2007-07-27 11:19   ` Angelo Graziosi
2007-07-28  8:13     ` 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).