Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 25860 invoked from network); 26 Feb 2010 01:31:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 Feb 2010 01:31:19 -0000 Received: (qmail 18214 invoked by uid 500); 26 Feb 2010 01:31:19 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 18097 invoked by uid 500); 26 Feb 2010 01:31:19 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 18090 invoked by uid 99); 26 Feb 2010 01:31:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Feb 2010 01:31:19 +0000 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; Fri, 26 Feb 2010 01:31:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A26172388A3C; Fri, 26 Feb 2010 01:30:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r916527 - /couchdb/branches/0.11.x/etc/Makefile.am Date: Fri, 26 Feb 2010 01:30:58 -0000 To: commits@couchdb.apache.org From: mhammond@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100226013058.A26172388A3C@eris.apache.org> Author: mhammond Date: Fri Feb 26 01:30:58 2010 New Revision: 916527 URL: http://svn.apache.org/viewvc?rev=916527&view=rev Log: generate .sha file for windows binary; ensure md5/sha use rel paths Modified: couchdb/branches/0.11.x/etc/Makefile.am Modified: couchdb/branches/0.11.x/etc/Makefile.am URL: http://svn.apache.org/viewvc/couchdb/branches/0.11.x/etc/Makefile.am?rev=916527&r1=916526&r2=916527&view=diff ============================================================================== --- couchdb/branches/0.11.x/etc/Makefile.am (original) +++ couchdb/branches/0.11.x/etc/Makefile.am Fri Feb 26 01:30:58 2010 @@ -28,7 +28,7 @@ EXTRA_DIST = $(init_sysconf_data) if WINDOWS -EXTRA_DIST += windows/setup-couchdb-@version@.exe.md5 +EXTRA_DIST += windows/setup-couchdb-@version@.exe.md5 windows/setup-couchdb-@version@.exe.sha endif CLEANFILES = $(init_DATA) $(default_sysconf_data) $(launchd_DATA) @@ -97,8 +97,10 @@ @echo Windows Installer is at: `cygpath -a -w windows/setup-couchdb-@version@.exe` windows/setup-couchdb-@version@.exe.md5: windows/setup-couchdb-@version@.exe - md5sum $< > $@ - @echo Windows Installer is at: `cygpath -a -w windows/setup-couchdb-@version@.exe` + cd windows && md5sum ./$( $(@F) + +windows/setup-couchdb-@version@.exe.sha: windows/setup-couchdb-@version@.exe + cd windows && sha1sum ./$( $(@F) FORCE: