diff options
author | Brian Behlendorf <[email protected]> | 2016-03-31 14:50:16 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-03-31 14:54:47 -0700 |
commit | e4023e42a8cb0d267870db82f75e23d4efb9fbd9 (patch) | |
tree | cf46b978e31316cb32bb33007a77b2855957523d /tests | |
parent | 39fc0cb5577e409f415e25d35a452b46996c08b1 (diff) |
Only build devname2devid when libudev headers are available
Accidentally introduced by commit 39fc0cb. The devname2devid utility
which depends on libudev must only be built when libudev headers are
available. This is accomplished through an AM_CONDITIONAL.
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #4416
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zfs-tests/cmd/devname2devid/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/zfs-tests/cmd/devname2devid/Makefile.am b/tests/zfs-tests/cmd/devname2devid/Makefile.am index 55811b7a7..a8991bb78 100644 --- a/tests/zfs-tests/cmd/devname2devid/Makefile.am +++ b/tests/zfs-tests/cmd/devname2devid/Makefile.am @@ -2,6 +2,8 @@ include $(top_srcdir)/config/Rules.am pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/bin +if WANT_DEVNAME2DEVID pkgexec_PROGRAMS = devname2devid devname2devid_SOURCES = devname2devid.c devname2devid_LDADD = -ludev +endif |