On Thu, Jun 09, 2005 at 02:57:37PM -0000, [EMAIL PROTECTED] 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
...

Reply via email to