summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel.holtmann@intel.com>2009-05-12 21:41:32 -0700
committerMarcel Holtmann <marcel.holtmann@intel.com>2009-05-12 21:41:32 -0700
commitb77f2fee1e007ba0d031ab667371c1b18e169861 (patch)
tree915d86217ca570a281a12d81cf61aef94f81fc8d
parentc0cda597a37d199ab9d16eb2d55ea2e5048e1235 (diff)
downloadofono-b77f2fee1e007ba0d031ab667371c1b18e169861.tar.bz2
Use $(top_srcdir) for unit tests compilation
-rw-r--r--unit/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/unit/Makefile.am b/unit/Makefile.am
index 06b15086..a1c5510a 100644
--- a/unit/Makefile.am
+++ b/unit/Makefile.am
@@ -1,12 +1,12 @@
noinst_PROGRAMS = test-common test-util test-sms
-test_common_SOURCES = test-common.c $(top_builddir)/src/common.c
+test_common_SOURCES = test-common.c $(top_srcdir)/src/common.c
-test_util_SOURCES = test-util.c $(top_builddir)/src/util.c
+test_util_SOURCES = test-util.c $(top_srcdir)/src/util.c
-test_sms_SOURCES = test-sms.c $(top_builddir)/src/util.c \
- $(top_builddir)/src/smsutil.c
+test_sms_SOURCES = test-sms.c $(top_srcdir)/src/util.c \
+ $(top_srcdir)/src/smsutil.c
LDADD = @GLIB_LIBS@ @GTHREAD_LIBS@