This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
libfoo.la is already going to be installed in `lib'
- From: Harlan Stenn <Harlan dot Stenn at pfcs dot com>
- To: automake at gnu dot org
- Date: Tue, 20 Aug 2002 00:47:05 -0400
- Subject: libfoo.la is already going to be installed in `lib'
I hope I didn't ask about this one already.
I have a Makefile.am that uses conditionals:
foo/Makefile.am:
if COND1
libfoo = libfoo.la
endif
if COND2
libfoo = libfoo.la
endif
...
lib_LTLIBRARIES = $(libfoo)
and when I run automake-1.6.3 on it I get:
automake: foo/Makefile.am: `libfoo.la' is already going to be installed in
`lib'
twice.
So how do I get automake to shut up?
H