Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 41457 invoked from network); 9 Jun 2005 15:22:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Jun 2005 15:22:47 -0000 Received: (qmail 13643 invoked by uid 500); 9 Jun 2005 15:22:41 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 13613 invoked by uid 500); 9 Jun 2005 15:22:41 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 13600 invoked by uid 99); 9 Jun 2005 15:22:40 -0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of jorton@redhat.com designates 66.187.233.31 as permitted sender) Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 09 Jun 2005 08:22:36 -0700 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j59FMBlk002950 for ; Thu, 9 Jun 2005 11:22:13 -0400 Received: from radish.cambridge.redhat.com (radish.cambridge.redhat.com [172.16.18.90]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j59FMAO02208 for ; Thu, 9 Jun 2005 11:22:11 -0400 Received: from radish.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by radish.cambridge.redhat.com (8.13.1/8.12.7) with ESMTP id j59FMA0m005895 for ; Thu, 9 Jun 2005 16:22:10 +0100 Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.13.1/8.12.10/Submit) id j59FM9Pl005894 for dev@httpd.apache.org; Thu, 9 Jun 2005 16:22:09 +0100 Date: Thu, 9 Jun 2005 16:22:09 +0100 From: Joe Orton To: dev@httpd.apache.org Subject: Re: svn commit: r189761 - /httpd/httpd/branches/fips-dev/acinclude.m4 Message-ID: <20050609152209.GA5278@redhat.com> Mail-Followup-To: dev@httpd.apache.org References: <20050609145737.20696.qmail@minotaur.apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20050609145737.20696.qmail@minotaur.apache.org> User-Agent: Mutt/1.4.1i X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Thu, Jun 09, 2005 at 02:57:37PM -0000, ben@apache.org wrote: > Author: ben > Date: Thu Jun 9 07:57:36 2005 > New Revision: 189761 > > URL: http://svn.apache.org/viewcvs?rev=189761&view=rev > Log: > Die properly when path is bollocks. Did you mean to commit this to the branch? (given that it's not FIPS-specific) - "test x == y" is not portable, s/==/=/ - don't exit, use AC_MSG_ERROR and pass an error message - whitespace should be spaces not tabs > Modified: > httpd/httpd/branches/fips-dev/acinclude.m4 > > Modified: httpd/httpd/branches/fips-dev/acinclude.m4 > URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/fips-dev/acinclude.m4?rev=189761&r1=189760&r2=189761&view=diff > ============================================================================== > --- httpd/httpd/branches/fips-dev/acinclude.m4 (original) > +++ httpd/httpd/branches/fips-dev/acinclude.m4 Thu Jun 9 07:57:36 2005 > @@ -340,7 +340,10 @@ > dnl If --with-sslc specifies a directory, we use that directory or fail > if test "x$withval" != "xyes" -a "x$withval" != "x"; then > dnl This ensures $withval is actually a directory and that it is absolute > - ap_ssltk_base="`cd $withval ; pwd`" > + ap_ssltk_base="`cd $withval && pwd`" > + if test "x$ap_ssltk_base" == "x"; then > + exit > + fi ...