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 2AEB0102FB for ; Wed, 9 Sep 2015 17:40:35 +0000 (UTC) Received: (qmail 21373 invoked by uid 500); 9 Sep 2015 17:40:35 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 21291 invoked by uid 500); 9 Sep 2015 17:40:34 -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 21282 invoked by uid 99); 9 Sep 2015 17:40:34 -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:40:34 +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 A47E5AC009D for ; Wed, 9 Sep 2015 17:40:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1702061 - /apr/apr/trunk/buildconf Date: Wed, 09 Sep 2015 17:40:34 -0000 To: commits@apr.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150909174034.A47E5AC009D@hades.apache.org> Author: wrowe Date: Wed Sep 9 17:40:34 2015 New Revision: 1702061 URL: http://svn.apache.org/r1702061 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. Modified: apr/apr/trunk/buildconf Modified: apr/apr/trunk/buildconf URL: http://svn.apache.org/viewvc/apr/apr/trunk/buildconf?rev=1702061&r1=1702060&r2=1702061&view=diff ============================================================================== --- apr/apr/trunk/buildconf (original) +++ apr/apr/trunk/buildconf Wed Sep 9 17:40:34 2015 @@ -131,4 +131,14 @@ if [ -f `which cut` ]; then > apr.spec ) fi +# Verify the tree was clean, notify user if not (normal in development) +# +if [ -f "include/apr.h" -o -f "include/arch/unix/apr_private.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