This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]