mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* configure.ac: Only add "-Wall" to CFLAGS if GCC is set to "yes".
This commit is contained in:
parent
63cae58f20
commit
8da4a08bbd
@ -1,3 +1,7 @@
|
||||
2004-10-24 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* configure.ac: Only add "-Wall" to CFLAGS if GCC is set to "yes".
|
||||
|
||||
2004-10-23 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* TODO: Check proper quoting in vfs/extfs/*.
|
||||
|
@ -552,7 +552,9 @@ fi
|
||||
|
||||
if test x"$USE_MAINTAINER_MODE" = x"yes"; then
|
||||
if test x"${enable_gcc_warnings+set}" != x"set"; then
|
||||
CFLAGS="-Wall $CFLAGS"
|
||||
if test x"${GCC}" = x"yes"; then
|
||||
CFLAGS="-Wall $CFLAGS"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user