diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2013-08-22 09:47:43 -0400 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-22 19:29:08 +0200 |
commit | 2930ff3863961403d89a0b1147c14b82f91ad7eb (patch) | |
tree | 5aa45c8ca52b7a4a2ef12f8fffd67cc9c211d767 /contrib | |
parent | 75dd4b05e1dacc76dc9d5f16be31978f84a71dc5 (diff) | |
download | sssd-2930ff3863961403d89a0b1147c14b82f91ad7eb.tar.gz sssd-2930ff3863961403d89a0b1147c14b82f91ad7eb.tar.xz sssd-2930ff3863961403d89a0b1147c14b82f91ad7eb.zip |
BUILD: Fix contrib build macros to display warnings
There was an inconsistency with how the warnings were specified and
how they were consumed by the macros. The result was that warnings were
hidden.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/fedora/bashrc_sssd | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/fedora/bashrc_sssd b/contrib/fedora/bashrc_sssd index 2b5ba15a7..d0e238f34 100644 --- a/contrib/fedora/bashrc_sssd +++ b/contrib/fedora/bashrc_sssd @@ -62,11 +62,11 @@ alias reconfig='autoreconf -if \ # Set the list of warnings that you want to detect (and in the case of remake # and chmake want to treat as errors) -WARNINGS='-Wall \ - -Wextra \ - -Wno-unused-parameter \ - -Wno-sign-compare \ - -Wformat-security' +SSS_WARNINGS='-Wall \ + -Wextra \ + -Wno-unused-parameter \ + -Wno-sign-compare \ + -Wformat-security' # Build (or finish building) all objects and then run the build-tests against # them. This builds with optimizations turned off and GDB debugging symbols. @@ -81,7 +81,7 @@ alias remake='make clean > /dev/null && chmake' # Clean the build directory and rebuild all objects, hiding most of the build # output except for warnings and errors. This builds with standard CFLAGS. alias warn='make clean >/dev/null \ - && make CFLAGS+="$WARNINGS" -j$PROCESSORS tests > /dev/null' + && make CFLAGS+="$SSS_WARNINGS" -j$PROCESSORS tests > /dev/null' # Install the built sources to the current system, cleaning up the LDB modules # and making sure that the NSS and PAM modules have the right SELinux context. |