From f0546374a001bbf8a4e05548a5320d05f3cc2d02 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ville=20Syrj=C3=A4l=C3=A4?= Date: Tue, 18 Dec 2012 16:51:27 +0200 Subject: [PATCH] kms_flip: Add -lrt back MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit kms_flip doesn't build due to missing -lrt. The build was broken due to a typo in this commit: commit acdf7171264a5139caabb78127c9eef5080c0682 Author: Daniel Vetter Date: Sat Dec 15 00:48:47 2012 +0100 tests: s/flip_test/kms_flip OCD wins! Signed-off-by: Daniel Vetter For some reason libudev.pc brings in -lrt as well, which probably caused the typo to go unnoticed. Signed-off-by: Ville Syrjälä Signed-off-by: Daniel Vetter --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 9cafe4c..0476908 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -180,7 +180,7 @@ gem_fence_thrash_LDADD = $(LDADD) -lpthread gem_threaded_access_tiled_LDADD = $(LDADD) -lpthread gem_wait_render_timeout_LDADD = $(LDADD) -lrt -kms_flip = $(LDADD) -lrt +kms_flip_LDADD = $(LDADD) -lrt gem_ctx_basic_LDADD = $(LDADD) -lpthread -- 2.7.4