diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-31 18:01:27 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-31 18:01:27 -0300 |
commit | df866ade99bea5fab0c05dc205588580a7ba71b6 (patch) | |
tree | 4f20ce7c30322a57ec9b025a59e4668714c6ef7d /configure.in | |
parent | 3d9d0faeb95ee9cf09ea43a4331ccb128dd0e827 (diff) |
Fix for 9144ba0845e7 (typo)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 19979626..6c366ca8 100644 --- a/configure.in +++ b/configure.in @@ -455,7 +455,7 @@ if eval "test x$GCC = xyes"; then if test "`echo $CFLAGS | grep '\-Wall' 2> /dev/null`" = ""; then CFLAGS="$CFLAGS -Wall" fi - if test "`echo $CFLAGS | grep -e '-W ' -e '-W$' ' 2> /dev/null`" = ""; then + if test "`echo $CFLAGS | grep -e '-W ' -e '-W$' 2> /dev/null`" = ""; then CFLAGS="$CFLAGS -W" fi if test "`echo $CFLAGS | grep '\-W[^a]' 2> /dev/null`" = ""; then |