diff options
author | Kay Sievers <kay@vrfy.org> | 2015-01-16 15:16:05 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2015-01-16 15:22:16 +0100 |
commit | 8d09b6deae675b59c4be10e697081c9271a1f5d1 (patch) | |
tree | 90364b5913e3c9b8f6eb2f9380213157d44ca169 | |
parent | b333117c7844e550210f5199687f1e9247f460cf (diff) |
build-sys: add missing HAVE_LIBIPTC
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ff69bb93d2..f69fc2ecbe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1352,8 +1352,12 @@ manual_tests += \ test-watchdog \ test-log \ test-ipcrm \ - test-btrfs \ + test-btrfs + +if HAVE_LIBIPTC +manual_tests += \ test-fw-util +endif if HAVE_KMOD manual_tests += \ @@ -1834,6 +1838,7 @@ test_btrfs_LDADD = \ libsystemd-label.la \ libsystemd-shared.la +if HAVE_LIBIPTC test_fw_util_SOURCES = \ src/test/test-fw-util.c @@ -1845,6 +1850,7 @@ test_fw_util_LDADD = \ libsystemd-fw.la \ libsystemd-shared.la \ $(LIBIPTC_LIBS) +endif test_rtnl_manual_SOURCES = \ src/test/test-rtnl-manual.c |