This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: FYI: same library installed several times in same directory (PR/350)
- From: Harlan Stenn <Harlan dot Stenn at pfcs dot com>
- To: automake at gnu dot org
- Cc: Harlan Stenn <Harlan dot Stenn at pfcs dot com>, Harlan dot Stenn at pfcs dot com
- Date: Mon, 21 Oct 2002 01:18:30 -0400
- Subject: Re: FYI: same library installed several times in same directory (PR/350)
Harlan> This bug still bites me in 1.7 and 1.7.1 .
I was wrong.
I'm trying to do what libtool6.test says cannot be done.
The Makefile.am wants to install the library in one place for COND1, and
a different place for COND2.
If:
if COND1
lib_LTLIBRARIES = liba.la
endif
if COND2
pkglib_LTLIBRARIES = liba.la
endif
is difficult to allow, would:
if COND1
lib_LTLIBRARIES = liba.la
else
if COND2
pkglib_LTLIBRARIES = liba.la
endif
endif
the way to go instead?
Just to ask, what is the problem if the same library is installed in two
different places?
H