diff options
author | Linus Nordberg <linus@nordu.net> | 2011-09-28 18:57:47 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-09-28 18:57:47 +0200 |
commit | 58fda19953390b2cf232f6ea4768707ba1331c14 (patch) | |
tree | 49e3217b61e5780e954b3aa9fec58d07a59ebd2f | |
parent | 4c163b1ea85b182dce5634f055480b2697efbc04 (diff) |
Don't test F-Ticks if we're not configured for supporting it.
-rw-r--r-- | tests/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 9c0ce94..a58aa1e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,4 +1,8 @@ -check_PROGRAMS = t_fticks +check_PROGRAMS = + +if WANT_FTICKS +check_PROGRAMS += t_fticks +endif AM_CFLAGS = -g -Wall -Werror @TARGET_CFLAGS@ AM_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@ |