diff options
author | Vicent Marti <tanoku@gmail.com> | 2010-12-22 21:57:48 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2010-12-22 21:57:48 +0200 |
commit | 0847dff5cd6522dbef29958cbafa7a56f409e82a (patch) | |
tree | a0e28de3c2f85d399b4789d785d5a63ea57da29b | |
parent | 40c44d2fb63dbe484824c9dbc7c098c797ad10a1 (diff) | |
download | libgit2-0847dff5cd6522dbef29958cbafa7a56f409e82a.tar.gz |
Fix test builds in Win32
Use forward slashes for the TEST_RESOURCES definition. libgit2 uses only
forward slashes.
Signed-off-by: Vicent Marti <tanoku@gmail.com>
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -144,7 +144,7 @@ def build_tests(bld): return directory = bld.path - resources_path = directory.find_node('tests/resources/').abspath() + resources_path = directory.find_node('tests/resources/').abspath().replace('\\', '/') # Common object with the Test library methods bld.objects(source=['tests/test_helpers.c', 'tests/test_lib.c'], includes=['src', 'tests'], target='test_helper') |