diff options
author | Jan Lehnardt <jan@apache.org> | 2011-03-26 21:02:47 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2011-03-26 21:02:47 +0000 |
commit | 579eadac058a82bcc609fea0473047ba6d90ea7c (patch) | |
tree | f36c9c6267c7665e23295d8b896ef5948d22396a /test | |
parent | 2802a688601368bd124cc9ede2d40d47e0b84127 (diff) |
Prefer local src paths for etap.
Closes COUCHDB-1056
Patch by Randall Leeds.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1085801 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/etap/test_util.erl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etap/test_util.erl.in b/test/etap/test_util.erl.in index 59bbc59a..87b474ae 100644 --- a/test/etap/test_util.erl.in +++ b/test/etap/test_util.erl.in @@ -24,7 +24,7 @@ builddir() -> init_code_path() -> Paths = ["etap", "couchdb", "erlang-oauth", "ibrowse", "mochiweb"], lists:foreach(fun(Name) -> - code:add_pathz(filename:join([builddir(), "src", Name])) + code:add_patha(filename:join([builddir(), "src", Name])) end, Paths). source_file(Name) -> |