Return-Path: X-Original-To: apmail-apr-commits-archive@www.apache.org Delivered-To: apmail-apr-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0BA2910307 for ; Wed, 9 Sep 2015 17:41:33 +0000 (UTC) Received: (qmail 23299 invoked by uid 500); 9 Sep 2015 17:41:33 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 23251 invoked by uid 500); 9 Sep 2015 17:41:32 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 23242 invoked by uid 99); 9 Sep 2015 17:41:32 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Sep 2015 17:41:32 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id CB07DAC009D for ; Wed, 9 Sep 2015 17:41:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1702063 - /apr/apr-util/branches/1.5.x/buildconf Date: Wed, 09 Sep 2015 17:41:32 -0000 To: commits@apr.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150909174132.CB07DAC009D@hades.apache.org> Author: wrowe Date: Wed Sep 9 17:41:32 2015 New Revision: 1702063 URL: http://svn.apache.org/r1702063 Log: Unusual case I tripped over in re-buildconf'ing a tree and preparing to build out-of-tree. This deserves a non-lethal alert if .h.in results are picked up. Backports: r1702061 Modified: apr/apr-util/branches/1.5.x/buildconf Modified: apr/apr-util/branches/1.5.x/buildconf URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/buildconf?rev=1702063&r1=1702062&r2=1702063&view=diff ============================================================================== --- apr/apr-util/branches/1.5.x/buildconf (original) +++ apr/apr-util/branches/1.5.x/buildconf Wed Sep 9 17:41:32 2015 @@ -114,3 +114,14 @@ if [ -f `which cut` ]; then ./build/rpm/apr-util.spec.in > apr-util.spec fi +# Verify the tree was clean, notify user if not (normal in development) +# +if [ -f "include/apu.h" -o -f "include/private/apu_config.h" -o \ + -f "include/apu_want.h" -o -f "include/private/apu_select_dbm.h" ]; then + echo "" + echo "Generated include files already exist, the tree is not clean." + echo "The resulting build-outputs.mk file is incorrect" + exit 1 +fi + +exit 0