e67329d8e0
Autoconf will fail to detect the ZoL libnvpair on systems that do not implicitly link library runtime dependencies, which is anything that has the GCC 4.5 DCO update. Build libuutil before libnvpair, and put it on the the LDADD line of the libnvpair automake template. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes: #560
8 lines
358 B
Makefile
8 lines
358 B
Makefile
# NB: GNU Automake Manual, Chapter 8.3.5: Libtool Convenience Libraries
|
|
# These five libraries are intermediary build components.
|
|
SUBDIRS = libspl libavl libefi libshare libunicode
|
|
|
|
# These four libraries, which are installed as the final build product,
|
|
# incorporate the five convenience libraries given above.
|
|
SUBDIRS += libuutil libnvpair libzpool libzfs
|