diff options
author | Jim Meyering <meyering@redhat.com> | 2009-07-09 15:20:15 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-07-09 15:21:53 +0200 |
commit | a9461064b8d47089e9ae7f8bc1c5c84e9e2d1d64 (patch) | |
tree | b3f22495e7c0b727e8e7ba54512301c7ed5e83e5 | |
parent | ad7b37bfd4bd5f1840f0f9039a819cafb83a3b53 (diff) | |
download | coreutils-a9461064b8d47089e9ae7f8bc1c5c84e9e2d1d64.tar.xz |
build: avoid build warn/failure due to -Wstack-protector
* configure.ac: Do not enable -Wstack-protector.
Otherwise, at least df.c would provoke a warning.
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 32d295815..4cb9d2903 100644 --- a/configure.ac +++ b/configure.ac @@ -82,6 +82,7 @@ if test "$gl_gcc_warnings" = yes; then nw="$nw -Wnested-externs" # use of XARGMATCH/verify_function__ nw="$nw -Wswitch-enum" # Too many warnings for now nw="$nw -Wswitch-default" # Too many warnings for now + nw="$nw -Wstack-protector" # not worth working around # things I might fix soon: nw="$nw -Wfloat-equal" # sort.c, seq.c nw="$nw -Wmissing-format-attribute" # copy.c |