diff options
author | Brian Behlendorf <[email protected]> | 2011-03-03 15:45:28 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-03-03 15:48:57 -0800 |
commit | 5075c7ea69cc66fa5031ab8d562a66274300ced6 (patch) | |
tree | 82ca0a0ff4f93db284bf0a6bee468af19ab59135 /lib/Makefile.in | |
parent | 6742abf9ec5a2c0ca132951efa0dee85698ff9b8 (diff) |
Add missing libspl+libzpool libs to libzfs
The libspl and libzpool libraries were missing from the libzfs
Makefile.am. They should be explicitly listed to avoid build
issues when compiling static libraries and binaries.
Additionally, ensure libzpool is built before libzfs because
libzfs is dependent on libzpool. This was also exposed as an
issue when forcing static linking.
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r-- | lib/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 76c242d69..357c74a2c 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -292,7 +292,7 @@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -SUBDIRS = libspl libavl libefi libnvpair libunicode libuutil libzfs libzpool +SUBDIRS = libspl libavl libefi libnvpair libunicode libuutil libzpool libzfs all: all-recursive .SUFFIXES: |