diff options
author | Steve Ellcey <sellcey@caviumnetworks.com> | 2017-08-02 12:57:58 -0700 |
---|---|---|
committer | Steve Ellcey <sellcey@caviumnetworks.com> | 2017-08-02 12:57:58 -0700 |
commit | b7f95f493b47abfd8f6320b3492b25a2beaa6aa1 (patch) | |
tree | 34c5c0dc4a5fab89752986a3dbdfbc740d5ce367 | |
parent | 5b736bc9b55115e67129e77db4de6cf193054cd2 (diff) | |
download | glibc-b7f95f493b47abfd8f6320b3492b25a2beaa6aa1.tar.gz glibc-b7f95f493b47abfd8f6320b3492b25a2beaa6aa1.tar.xz glibc-b7f95f493b47abfd8f6320b3492b25a2beaa6aa1.zip |
Remove CFLAG settings that turn off warning (no longer needed).
2017-08-02 Steve Ellcey <sellcey@cavium.com> * localedata/Makefile (CFLAGS-tst_iswalnum.c, CFLAGS-tst_iswalpha.c CFLAGS-tst_iswcntrl.c, CFLAGS-tst_iswdigit.c, CFLAGS-tst_iswgraph.c, CFLAGS-tst_iswlower.c, CFLAGS-tst_iswprint.c, CFLAGS-tst_iswpunct.c, CFLAGS-tst_iswspace.c, CFLAGS-tst_iswupper.c, CFLAGS-tst_iswxdigit.c, CFLAGS-tst_towlower.c, CFLAGS-tst_towupper.c): Remove.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | localedata/Makefile | 16 |
2 files changed, 8 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog index 0618954834..2125236df8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2017-08-02 Steve Ellcey <sellcey@cavium.com> + + * localedata/Makefile (CFLAGS-tst_iswalnum.c, CFLAGS-tst_iswalpha.c + CFLAGS-tst_iswcntrl.c, CFLAGS-tst_iswdigit.c, CFLAGS-tst_iswgraph.c, + CFLAGS-tst_iswlower.c, CFLAGS-tst_iswprint.c, CFLAGS-tst_iswpunct.c, + CFLAGS-tst_iswspace.c, CFLAGS-tst_iswupper.c, CFLAGS-tst_iswxdigit.c, + CFLAGS-tst_towlower.c, CFLAGS-tst_towupper.c): Remove. + 2017-08-02 H.J. Lu <hongjiu.lu@intel.com> * sysdeps/x86_64/start.S (_start): Check PIC instead of SHARED. diff --git a/localedata/Makefile b/localedata/Makefile index 20c5921aea..9db9464b3e 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -122,22 +122,6 @@ $(inst_i18ndir)/charmaps/%.gz: charmaps/% $(+force) # Install the locale source files in the appropriate directory. $(inst_i18ndir)/locales/%: locales/% $(+force); $(do-install) -# These tests use multistatement macros from tests-mbwc/tst_funcs.h -# and will not compile with GCC 8.1 without the warning turned off. -CFLAGS-tst_iswalnum.c = -Wno-multistatement-macros -CFLAGS-tst_iswalpha.c = -Wno-multistatement-macros -CFLAGS-tst_iswcntrl.c = -Wno-multistatement-macros -CFLAGS-tst_iswdigit.c = -Wno-multistatement-macros -CFLAGS-tst_iswgraph.c = -Wno-multistatement-macros -CFLAGS-tst_iswlower.c = -Wno-multistatement-macros -CFLAGS-tst_iswprint.c = -Wno-multistatement-macros -CFLAGS-tst_iswpunct.c = -Wno-multistatement-macros -CFLAGS-tst_iswspace.c = -Wno-multistatement-macros -CFLAGS-tst_iswupper.c = -Wno-multistatement-macros -CFLAGS-tst_iswxdigit.c = -Wno-multistatement-macros -CFLAGS-tst_towlower.c = -Wno-multistatement-macros -CFLAGS-tst_towupper.c = -Wno-multistatement-macros - ifeq ($(run-built-tests),yes) generated-dirs += $(LOCALES) |