diff options
author | Dagobert Michelsen <dam@opencsw.org> | 2018-05-16 09:42:39 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-05-16 10:12:57 +0200 |
commit | d9e92fd9fd1d04a603c898fb534440518d78a738 (patch) | |
tree | 6038e17e9d98a675e1a5bec62eaac0ba1df19d2b /tests | |
parent | f0c466dceddc88a7f55125bed2333bda8091489f (diff) |
tests/libtest/Makefile: Do not unconditionally add gcc-specific flags
The warning flag leads e.g. Sun Studio compiler to bail out.
Closes #2576
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am index 0b8ebe9a9..a6ab719fc 100644 --- a/tests/libtest/Makefile.am +++ b/tests/libtest/Makefile.am @@ -117,7 +117,7 @@ noinst_LTLIBRARIES += libstubgss.la libstubgss_la_CPPFLAGS = $(AM_CPPFLAGS) libstubgss_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version -rpath /nowhere -libstubgss_la_CFLAGS = $(AM_CFLAGS) -g -Wno-unused-parameter +libstubgss_la_CFLAGS = $(AM_CFLAGS) -g libstubgss_la_SOURCES = stub_gssapi.c stub_gssapi.h |