> "Jonas" == Jonas Berlin <[EMAIL PROTECTED]> writes:
Jonas> I don't know if this has been fixed or not, but in my
Jonas> automake-1.4-5 which came with RedHat 6.1, there are bugs in
Jonas> the main executable, i.e. "automake".
Both the bugs you mention are fixed in the cvs automake.
Jonas>
Alexandre> In particular, in the case of installing the library, you
Alexandre> must add the -rpath switch to LDFLAGS_LIBJS. I believe
Alexandre> that's the main reason why automake doesn't support
Alexandre> conditional installation of ltlibraries.
Yes, that's right.
Is there something we can d
%% Free Software Foundation <[EMAIL PROTECTED]> writes:
fsf> [CC'ed to a number of lists where it appears the erroneous URL below was
fsf> published.]
>> I'm trying to retrieve http://alpha.gnu.org/gnu/make/make-3.79.0.1.tar.gz
fsf> the proper URL is
fsf> ftp://alpha.gnu.org/gnu/make/
On Wednesday, June 14, 2000, "Braden N. McDaniel" <[EMAIL PROTECTED]> wrote:
>
> 1 EXTRA_LTLIBRARIES = libjs.la
> 2 if JS_INSTALL
> 3 lib_LTLIBRARIES = libjs.la
> 4 else
> 5 noinst_LTLIBRARIES = libjs.la
> 6 endif
You might also try something like this (not tested):
if JS_INSTALL
INSTALL_LI
On Friday, June 16, 2000, F Labrosse <[EMAIL PROTECTED]> wrote:
> Pete Willemsen writes:
> > Hello.
> >
> > I'm struggling with figuring out a way to maintain my directory
> > structure for my header files. I have the following structure
> >
> >file1.c ... fileN.c PackageName/ Makefil
Pete Willemsen writes:
> Hello.
>
> I'm struggling with figuring out a way to maintain my directory
> structure for my header files. I have the following structure
>
>file1.c ... fileN.c PackageName/ Makefile.am configure.in ...
> |
>
I don't know if this has been fixed or not, but in my automake-1.4-5
which came with RedHat 6.1, there are bugs in the main executable,
i.e. "automake".
The bugs I found are in the maintainer-clean target.
1. For both yacc & lex, it forgets the "." between the basename and
the extension.
2. For
Hello,
As I reported several weeks ago, the CVS version of Automake has a
bug that it installs the scripts `depcomp' and `compile' into each
$(srcdir)s instead of $(top_srcdir) when the aux dir is not defined
explicitly. That is not still fixed, so I took a look at the code, to
fix that mysel