From 451dbad007dc941fb7a4877238873d13245c0a65 Mon Sep 17 00:00:00 2001 From: Chase Douglas Date: Tue, 22 Jun 2010 16:06:38 -0400 Subject: Search for libmtdev in src/ directory during a clean build If mtdev hasn't already been installed, the test binaries will fail to compile because they can't find libmtdev. Point them to the src directory build output. Signed-off-by: Chase Douglas --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index 532540d..5e5bde5 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -7,6 +7,6 @@ INCLUDES=-I$(top_srcdir)/include/ mtdev_mapgen_SOURCES = mtdev-mapgen.c mtdev_SOURCES = mtdev.c -mtdev_LDFLAGS = -lmtdev +mtdev_LDFLAGS = -lmtdev -L$(top_srcdir)/src/.libs/ endif -- cgit v1.2.1