diff options
Diffstat (limited to 'src/test/Makefile.am')
-rw-r--r-- | src/test/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/Makefile.am b/src/test/Makefile.am index d50200d821..642e7c2efe 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -28,9 +28,12 @@ test_udev_LDADD = \ $(top_builddir)/src/libudev/libudev-private.la \ $(top_builddir)/src/udev/libudev-core.la \ $(BLKID_LIBS) \ - $(KMOD_LIBS) \ $(SELINUX_LIBS) +if HAVE_LIBKMOD +test_udev_LDADD += $(KMOD_LIBS) +endif + test_udev_CPPFLAGS = \ -I $(top_srcdir)/src/udev \ $(AM_CPPFLAGS) |