diff options
author | Matt Turner <mattst88@gmail.com> | 2011-03-03 21:20:52 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2011-03-03 21:27:24 -0500 |
commit | 3293eb95cabc83f5d2282c2890919c07e6af5205 (patch) | |
tree | 3570047d5aff6a3e3aca9c45fdb72bfe5f442d05 | |
parent | a926a043b8079a8e283aa231e3c2347f5ad5864f (diff) |
don't try to build modetest without libkms
Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r-- | tests/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index ebf4853a..01ca8b4b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -16,9 +16,6 @@ if HAVE_LIBKMS SUBDIRS += kmstest endif -if HAVE_INTEL -endif - if HAVE_LIBUDEV check_LTLIBRARIES = libdrmtest.la @@ -50,9 +47,13 @@ TESTS = \ SUBDIRS += vbltest $(NULL) if HAVE_INTEL +if HAVE_LIBKMS +SUBDIRS += \ + modetest +endif + SUBDIRS += \ modeprint \ - modetest \ $(NULL) TESTS += \ |