diff options
author | Yang Tse <yangsita@gmail.com> | 2013-01-20 04:17:11 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-01-20 04:20:02 +0100 |
commit | 63605d281f804382d2bd2d8655d73e188c12e071 (patch) | |
tree | f691a1c88b171b2399693d7421faa3d99762a48e /tests/unit | |
parent | f4cc54cb4746ae5a6d63438aae811f6543b13774 (diff) |
Makefile.inc: fix $(top_srcdir) not allowed in _SOURCES variables
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Makefile.inc b/tests/unit/Makefile.inc index c6d9d28c4..20835d709 100644 --- a/tests/unit/Makefile.inc +++ b/tests/unit/Makefile.inc @@ -1,8 +1,8 @@ # these files are used in every single unit test program UNITFILES = curlcheck.h \ - $(top_srcdir)/tests/libtest/test.h \ - $(top_srcdir)/tests/libtest/first.c + ../libtest/test.h \ + ../libtest/first.c # These are all unit test programs UNITPROGS = unit1300 unit1301 unit1302 unit1303 unit1304 unit1305 unit1307 \ |