diff options
author | Ronny Chevalier <chevalier.ronny@gmail.com> | 2014-11-08 21:11:19 +0100 |
---|---|---|
committer | Ronny Chevalier <chevalier.ronny@gmail.com> | 2014-11-08 22:48:17 +0100 |
commit | b36bf0f3611f7845c08b1c553a57e6a6e400e75a (patch) | |
tree | 50281d4a5d25c7e9222d6a20f6d9989242bbc098 | |
parent | bc9992978cd1456b5bb79e72e8cf7a2331d3a7c6 (diff) |
build-sys: avoid duplication of macro definition
TEST_DIR is already defined in AM_CFLAGS
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 698a7b0f3f..ca8e339b5a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1765,8 +1765,7 @@ test_cgroup_mask_SOURCES = \ src/test/test-cgroup-mask.c test_cgroup_mask_CPPFLAGS = \ - $(AM_CPPFLAGS) \ - -DTEST_DIR=\"$(abs_top_srcdir)/test\" + $(AM_CPPFLAGS) test_cgroup_mask_CFLAGS = \ $(AM_CFLAGS) \ @@ -1844,8 +1843,7 @@ test_sched_prio_SOURCES = \ src/test/test-sched-prio.c test_sched_prio_CPPFLAGS = \ - $(AM_CPPFLAGS) \ - -DTEST_DIR=\"$(abs_top_srcdir)/test\" + $(AM_CPPFLAGS) test_sched_prio_CFLAGS = \ $(AM_CFLAGS) \ |