Return-Path: Delivered-To: apmail-incubator-thrift-commits-archive@minotaur.apache.org Received: (qmail 69080 invoked from network); 2 Apr 2009 21:37:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Apr 2009 21:37:42 -0000 Received: (qmail 78992 invoked by uid 500); 2 Apr 2009 21:37:42 -0000 Delivered-To: apmail-incubator-thrift-commits-archive@incubator.apache.org Received: (qmail 78970 invoked by uid 500); 2 Apr 2009 21:37:42 -0000 Mailing-List: contact thrift-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: thrift-dev@incubator.apache.org Delivered-To: mailing list thrift-commits@incubator.apache.org Received: (qmail 78961 invoked by uid 99); 2 Apr 2009 21:37:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Apr 2009 21:37:42 +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; Thu, 02 Apr 2009 21:37:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9EBAA23889D0; Thu, 2 Apr 2009 21:37:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r761437 - /incubator/thrift/trunk/bootstrap.sh Date: Thu, 02 Apr 2009 21:37:13 -0000 To: thrift-commits@incubator.apache.org From: dreiss@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090402213713.9EBAA23889D0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dreiss Date: Thu Apr 2 21:37:12 2009 New Revision: 761437 URL: http://svn.apache.org/viewvc?rev=761437&view=rev Log: Run aclocal before autoheader It looks ike autoheader inspects ./aclocal.m4 (produced by aclocal) but not ./aclocal (which is read by aclocal), so it doesn't pick up our custom defines unless we run aclocal first. Modified: incubator/thrift/trunk/bootstrap.sh Modified: incubator/thrift/trunk/bootstrap.sh URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/bootstrap.sh?rev=761437&r1=761436&r2=761437&view=diff ============================================================================== --- incubator/thrift/trunk/bootstrap.sh (original) +++ incubator/thrift/trunk/bootstrap.sh Thu Apr 2 21:37:12 2009 @@ -22,8 +22,8 @@ ./cleanup.sh autoscan || exit 1 -autoheader || exit 1 aclocal -I ./aclocal || exit 1 +autoheader || exit 1 if libtoolize --version 1 >/dev/null 2>/dev/null; then libtoolize --automake || exit 1