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/15 10:28:47 UTC

svn commit: r899570 - /couchdb/branches/0.10.x/test/etap/Makefile.am

Author: jan
Date: Fri Jan 15 09:28:45 2010
New Revision: 899570

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

Modified:
    couchdb/branches/0.10.x/test/etap/Makefile.am

Modified: couchdb/branches/0.10.x/test/etap/Makefile.am
URL: http://svn.apache.org/viewvc/couchdb/branches/0.10.x/test/etap/Makefile.am?rev=899570&r1=899569&r2=899570&view=diff
==============================================================================
--- couchdb/branches/0.10.x/test/etap/Makefile.am (original)
+++ couchdb/branches/0.10.x/test/etap/Makefile.am Fri Jan 15 09:28:45 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" \