diff options
author | Jim Meyering <meyering@redhat.com> | 2008-12-22 18:21:59 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-12-23 17:22:57 +0100 |
commit | 680afe675159bab05b45ddebfc79eac5f7cd5bc5 (patch) | |
tree | ea6462cf69ee92c7463d5fd0b0191010310c7451 /src | |
parent | 0fcf7301049a1db0268337e433932037cb8eac3c (diff) | |
download | coreutils-680afe675159bab05b45ddebfc79eac5f7cd5bc5.tar.xz |
build: do enable $(WERROR_CFLAGS) for src/ files.
This reverts the more recent commit (of two) entitled "build:
add configure-time --enable-gcc-warnings option; avoid warnings".
Pádraig Brady spotted the contradiction between the log message
and actual change.
This reverts commit 292d68565a34b237cd2bf586ace545b7cd3dbfcf.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 68c5f75f6..819b87461 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -26,7 +26,7 @@ no_install__progs = \ build_if_possible__progs = \ chroot df hostid nice pinky stty su uname uptime users who -AM_CFLAGS = $(WARN_CFLAGS) # $(WERROR_CFLAGS) +AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) EXTRA_PROGRAMS = \ $(no_install__progs) \ |