diff options
author | Jan Lehnardt <jan@apache.org> | 2010-01-14 17:07:32 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2010-01-14 17:07:32 +0000 |
commit | 0a94f47f2b962048837a6a28449bfd962dd1fd3e (patch) | |
tree | ca4d27339133111234161d12eba28c80b5efb85b /test | |
parent | 67b876687796a64580d76f94b540d55fb8f4f4e7 (diff) |
use the ./configure detected erlc, fixes builds where erlc is not in PATH
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@899306 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/etap/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etap/Makefile.am b/test/etap/Makefile.am index d0f751f8..042c0bc2 100644 --- a/test/etap/Makefile.am +++ b/test/etap/Makefile.am @@ -14,7 +14,7 @@ noinst_SCRIPTS = run noinst_DATA = test_util.beam %.beam: %.erl - erlc $< + $(ERLC) $< run: run.tpl sed -e "s|%abs_top_srcdir%|@abs_top_srcdir@|g" \ |