diff options
author | Brian Behlendorf <[email protected]> | 2011-02-10 10:57:29 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-02-10 11:05:44 -0800 |
commit | 1ac0ea38a5b19771b0dfbc6b2244c4f674ef1a31 (patch) | |
tree | 55c69ba0d4da61494f8b9008e6ff4f535e2f6f30 /cmd/zinject/Makefile.am | |
parent | 6c9e06f14de1ed27e6032be2197b8f4cbec7405a (diff) |
Add missing -ldl linker option
The inclusion on dlsym(), dlopen(), and dlclose() symbols require
us to link against the dl library. Be careful to add the flag to
both the libzfs library and the commands which depend on the library.
Diffstat (limited to 'cmd/zinject/Makefile.am')
-rw-r--r-- | cmd/zinject/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/zinject/Makefile.am b/cmd/zinject/Makefile.am index df97db372..eb67b1569 100644 --- a/cmd/zinject/Makefile.am +++ b/cmd/zinject/Makefile.am @@ -21,4 +21,4 @@ zinject_LDADD = \ $(top_builddir)/lib/libzpool/libzpool.la \ $(top_builddir)/lib/libzfs/libzfs.la -zinject_LDFLAGS = -pthread -lm $(ZLIB) -lrt $(LIBUUID) $(LIBBLKID) +zinject_LDFLAGS = -pthread -lm $(ZLIB) -lrt -ldl $(LIBUUID) $(LIBBLKID) |