automake
[Top][All Lists]
Advanced

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

Re: FYI: same library installed several times in same directory (PR/350)


From: Harlan Stenn
Subject: Re: FYI: same library installed several times in same directory (PR/350)
Date: Mon, 21 Oct 2002 01:18:30 -0400
User-agent: EMH/1.10.0 SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd)

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




reply via email to

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