- (djm) [configure.ac] missing 'test' call for -with-Werror test

This commit is contained in:
Damien Miller 2005-10-08 16:21:19 +10:00
parent 1e6616bb14
commit e04ec6fdfd
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
20051008
- (dtucker) [configure.ac] Bug #1098: define $MAIL for HP-UX; report from
brian.smith at agilent com.
- (djm) [configure.ac] missing 'test' call for -with-Werror test
20051005
- (dtucker) [configure.ac sshd.8] Enable locked account check (a prepended
@ -3095,4 +3096,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3917 2005/10/08 02:07:01 dtucker Exp $
$Id: ChangeLog,v 1.3918 2005/10/08 06:21:19 djm Exp $

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.299 2005/10/08 02:07:02 dtucker Exp $
# $Id: configure.ac,v 1.300 2005/10/08 06:21:20 djm Exp $
#
# Copyright (c) 1999-2004 Damien Miller
#
@ -670,7 +670,7 @@ AC_ARG_WITH(Werror,
[
if test -n "$withval" && test "x$withval" != "xno"; then
werror_flags="-Werror"
if "x${withval}" != "xyes"; then
if test "x${withval}" != "xyes"; then
werror_flags="$withval"
fi
fi