From couchdb-commits-return-481-apmail-incubator-couchdb-commits-archive=incubator.apache.org@incubator.apache.org Sat Jun 07 16:33:38 2008 Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 51237 invoked from network); 7 Jun 2008 16:33:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jun 2008 16:33:37 -0000 Received: (qmail 90470 invoked by uid 500); 7 Jun 2008 16:33:40 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 90443 invoked by uid 500); 7 Jun 2008 16:33:40 -0000 Mailing-List: contact couchdb-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-dev@incubator.apache.org Delivered-To: mailing list couchdb-commits@incubator.apache.org Received: (qmail 90434 invoked by uid 99); 7 Jun 2008 16:33:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jun 2008 09:33:40 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jun 2008 16:32:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EF0C12388A08; Sat, 7 Jun 2008 09:33:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r664364 - in /incubator/couchdb/trunk/src: couchdb/Makefile.am mochiweb/Makefile.am Date: Sat, 07 Jun 2008 16:33:03 -0000 To: couchdb-commits@incubator.apache.org From: nslater@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080607163303.EF0C12388A08@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nslater Date: Sat Jun 7 09:33:03 2008 New Revision: 664364 URL: http://svn.apache.org/viewvc?rev=664364&view=rev Log: corrected use of erlc to $(ERLC) Modified: incubator/couchdb/trunk/src/couchdb/Makefile.am incubator/couchdb/trunk/src/mochiweb/Makefile.am Modified: incubator/couchdb/trunk/src/couchdb/Makefile.am URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/Makefile.am?rev=664364&r1=664363&r2=664364&view=diff ============================================================================== --- incubator/couchdb/trunk/src/couchdb/Makefile.am (original) +++ incubator/couchdb/trunk/src/couchdb/Makefile.am Sat Jun 7 09:33:03 2008 @@ -82,7 +82,7 @@ chmod +x $@ %.beam: %.erl - erlc $< + $(ERLC) $< install-data-hook: if test -f "$(DESTDIR)/$(couchprivlibdir)/couch_erl_driver"; then \ Modified: incubator/couchdb/trunk/src/mochiweb/Makefile.am URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/mochiweb/Makefile.am?rev=664364&r1=664363&r2=664364&view=diff ============================================================================== --- incubator/couchdb/trunk/src/mochiweb/Makefile.am (original) +++ incubator/couchdb/trunk/src/mochiweb/Makefile.am Sat Jun 7 09:33:03 2008 @@ -78,4 +78,4 @@ $(mochiwebebin_make_generated_file_list) %.beam: %.erl - erlc $< + $(ERLC) $<