* Re: ARGH version.texi
@ 2002-08-27 4:47 Lynn Winebarger
2002-08-27 15:39 ` Rob Browning
0 siblings, 1 reply; 6+ messages in thread
From: Lynn Winebarger @ 2002-08-27 4:47 UTC (permalink / raw)
On Monday 26 August 2002 16:53, Neil Jerram wrote:
> >>>>> "Han-Wen" == Han-Wen Nienhuys <hanwen@cs.uu.nl> writes:
>
> Han-Wen> Where the fuck is version.texi supposed to come from?
>
> automake generates rules in Makefile.in and Makefile to create
> version.texi, like this:
> [deletia]
>
> But I think it only does this if you configured with
> --enable-maintainer-mode. Perhaps that is your problem?
Back around March or May, I had similar trouble (see bug-guile).
Turned out running autogen twice would the fix the problem. But I
did configure with --enable-maintainer-mode.
Lynn
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ARGH version.texi
2002-08-27 4:47 ARGH version.texi Lynn Winebarger
@ 2002-08-27 15:39 ` Rob Browning
2002-08-27 15:42 ` Lynn Winebarger
0 siblings, 1 reply; 6+ messages in thread
From: Rob Browning @ 2002-08-27 15:39 UTC (permalink / raw)
Cc: guile-devel
Lynn Winebarger <owinebar@free-expression.org> writes:
>> But I think it only does this if you configured with
>> --enable-maintainer-mode. Perhaps that is your problem?
>
> Back around March or May, I had similar trouble (see bug-guile).
> Turned out running autogen twice would the fix the problem. But I
> did configure with --enable-maintainer-mode.
And is this problem with the tarfile or just CVS? (wondering if
*I'll* need to run autogen twice before make dist...)
--
Rob Browning
rlb @defaultvalue.org, @linuxdevel.com, and @debian.org
Previously @cs.utexas.edu
GPG=1C58 8B2C FB5E 3F64 EA5C 64AE 78FE E5FE F0CB A0AD
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ARGH version.texi
2002-08-27 15:39 ` Rob Browning
@ 2002-08-27 15:42 ` Lynn Winebarger
0 siblings, 0 replies; 6+ messages in thread
From: Lynn Winebarger @ 2002-08-27 15:42 UTC (permalink / raw)
Cc: guile-devel
On Tuesday 27 August 2002 10:39, Rob Browning wrote:
> Lynn Winebarger <owinebar@free-expression.org> writes:
>
> >> But I think it only does this if you configured with
> >> --enable-maintainer-mode. Perhaps that is your problem?
> >
> > Back around March or May, I had similar trouble (see bug-guile).
> > Turned out running autogen twice would the fix the problem. But I
> > did configure with --enable-maintainer-mode.
>
> And is this problem with the tarfile or just CVS? (wondering if
> *I'll* need to run autogen twice before make dist...)
I think it's only when you check out a fresh tree and autogen hasn't been
run in it before. Autogen is idempotent after the second run (rather than
after the first run, which would be correct behaviour).
Lynn
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* ARGH version.texi
@ 2002-08-23 0:21 Han-Wen Nienhuys
2002-08-26 21:53 ` Neil Jerram
2002-08-26 21:58 ` Marius Vollmer
0 siblings, 2 replies; 6+ messages in thread
From: Han-Wen Nienhuys @ 2002-08-23 0:21 UTC (permalink / raw)
Where the fuck is version.texi supposed to come from?
make[1]: Entering directory `/home/hanwen/usr/src/savannah/official-guile/guile/guile-core/doc/ref'
cd . \
&& /bin/sh /home/hanwen/usr/src/savannah/official-guile/guile/guile-core/missing --run makeinfo \
`echo guile.texi | sed 's,.*/,,'`
guile.texi:50: @include `version.texi': No such file or directory.
./data-rep.texi:1499: warning: `(' follows defined name `scm_make_smob_type_mfpe' instead of whitespace.
./data-rep.texi:1545: war
i've already tried running automake, running configure.
ARGH
Han-Wen
(exasperated. )
--
Han-Wen Nienhuys | hanwen@cs.uu.nl | http://www.cs.uu.nl/~hanwen
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ARGH version.texi
2002-08-23 0:21 Han-Wen Nienhuys
@ 2002-08-26 21:53 ` Neil Jerram
2002-08-26 21:58 ` Marius Vollmer
1 sibling, 0 replies; 6+ messages in thread
From: Neil Jerram @ 2002-08-26 21:53 UTC (permalink / raw)
Cc: guile-devel
>>>>> "Han-Wen" == Han-Wen Nienhuys <hanwen@cs.uu.nl> writes:
Han-Wen> Where the fuck is version.texi supposed to come from?
automake generates rules in Makefile.in and Makefile to create
version.texi, like this:
$(srcdir)/version.texi: $(srcdir)/stamp-vti
@:
$(srcdir)/stamp-vti: guile.texi $(top_srcdir)/configure.in
@(set `$(SHELL) $(srcdir)/mdate-sh $(srcdir)/guile.texi`; \
echo "@set UPDATED $$1 $$2 $$3"; \
echo "@set UPDATED-MONTH $$2 $$3"; \
echo "@set EDITION $(VERSION)"; \
echo "@set VERSION $(VERSION)") > vti.tmp
@cmp -s vti.tmp $(srcdir)/version.texi \
|| (echo "Updating $(srcdir)/version.texi"; \
cp vti.tmp $(srcdir)/version.texi)
-@rm -f vti.tmp
@cp $(srcdir)/version.texi $@
But I think it only does this if you configured with
--enable-maintainer-mode. Perhaps that is your problem?
Neil
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ARGH version.texi
2002-08-23 0:21 Han-Wen Nienhuys
2002-08-26 21:53 ` Neil Jerram
@ 2002-08-26 21:58 ` Marius Vollmer
1 sibling, 0 replies; 6+ messages in thread
From: Marius Vollmer @ 2002-08-26 21:58 UTC (permalink / raw)
Cc: guile-devel
Han-Wen Nienhuys <hanwen@cs.uu.nl> writes:
> Where the fuck is version.texi supposed to come from?
It's generated by the Makefile, but in a strange way. Try removing
stamp-vti.
> (exasperated. )
(feeling better? :-)
--
GPG: D5D4E405 - 2F9B BCCC 8527 692A 04E3 331E FAF8 226A D5D4 E405
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2002-08-27 15:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-27 4:47 ARGH version.texi Lynn Winebarger
2002-08-27 15:39 ` Rob Browning
2002-08-27 15:42 ` Lynn Winebarger
-- strict thread matches above, loose matches on Subject: below --
2002-08-23 0:21 Han-Wen Nienhuys
2002-08-26 21:53 ` Neil Jerram
2002-08-26 21:58 ` Marius Vollmer
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).