You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2010/01/14 18:07:33 UTC

svn commit: r899306 - /couchdb/trunk/test/etap/Makefile.am

Author: jan
Date: Thu Jan 14 17:07:32 2010
New Revision: 899306

URL: http://svn.apache.org/viewvc?rev=899306&view=rev
Log:
use the ./configure detected erlc, fixes builds where erlc is not in PATH

Modified:
    couchdb/trunk/test/etap/Makefile.am

Modified: couchdb/trunk/test/etap/Makefile.am
URL: http://svn.apache.org/viewvc/couchdb/trunk/test/etap/Makefile.am?rev=899306&r1=899305&r2=899306&view=diff
==============================================================================
--- couchdb/trunk/test/etap/Makefile.am (original)
+++ couchdb/trunk/test/etap/Makefile.am Thu Jan 14 17:07:32 2010
@@ -14,7 +14,7 @@
 noinst_DATA = test_util.beam
 
 %.beam: %.erl
-	erlc $<
+	$(ERLC) $<
 
 run: run.tpl
 	sed -e "s|%abs_top_srcdir%|@abs_top_srcdir@|g" \