bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: CVS 1.11.1 released.


From: Pavel Roskin
Subject: Re: CVS 1.11.1 released.
Date: Tue, 29 May 2001 14:55:29 -0400 (EDT)

Hello, Alexey!

> Now I've installed 1.4f, looked to current ChangeLog and also ran
> `aclocal'.  It works now.  JFYI, `automake' reports:
>
> contrib/Makefile.am:75: `#' comment at start of rule is unportable
> contrib/Makefile.am:76: `#' comment at start of rule is unportable
> doc/Makefile.am:147: `#' comment at start of rule is unportable

That's correct. There were reports about errors in makefiles on Tru64.
Here's the fix.

ChangeLog:
        * Makefile.am: Use double hash for comments inside the rules,
        so that they don't appear in makefiles, because such comments
        are unportable.

________________________________
--- contrib/Makefile.am
+++ contrib/Makefile.am
@@ -72,8 +72,8 @@

 # we'd rather have a link here rather than two copies of a script
 install-data-local:
-       # FIXME - this path should be determined dynamically from bindir
-       # & contribdir
+       ## FIXME - this path should be determined dynamically from bindir
+       ## & contribdir
        @$(NORMAL_INSTALL)
        $(mkinstalldirs) $(DESTDIR)$(bindir)
        @list='$(bin_LINKS)'; for p in $$list; do \
--- doc/Makefile.am
+++ doc/Makefile.am
@@ -144,7 +144,7 @@
 # - They should be disabled on systems without the bug and in environments
 #   where $(srcdir) = $(builddir)
 CVSvn.texi: $(srcdir)/CVSvn.texi
-       # use cat so the time stamp gets set properly
+       ## use cat so the time stamp gets set properly
        cat $(srcdir)/CVSvn.texi >$@
 $(srcdir)/CVSvn.texi: $(srcdir)/CVSvn.texi.in $(top_srcdir)/configure.in
        sed 's,@VERSION\@,$(VERSION),g' $(srcdir)/CVSvn.texi.in 
>$(srcdir)/CVSvn.ttexi
________________________________

Regards,
Pavel Roskin




reply via email to

[Prev in Thread] Current Thread [Next in Thread]