2002-09-03  Jakub Jelinek  <jakub@redhat.com>

	* locale/tst-C_locale.c (run_test): Pass LC_ALL_MASK not LC_ALL to
	newlocale.
This commit is contained in:
Ulrich Drepper 2002-09-03 18:43:43 +00:00
parent bcc565a047
commit 20e2b644ed
3 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2002-09-03 Jakub Jelinek <jakub@redhat.com>
* locale/tst-C_locale.c (run_test): Pass LC_ALL_MASK not LC_ALL to
newlocale.
2002-09-02 Roland McGrath <roland@redhat.com> 2002-09-02 Roland McGrath <roland@redhat.com>
* sysdeps/powerpc/elf/libc-start.c [! SHARED]: Call * sysdeps/powerpc/elf/libc-start.c [! SHARED]: Call

View File

@ -223,7 +223,7 @@ run_test (const char *locname)
STRTEST (NOSTR, ""); STRTEST (NOSTR, "");
/* Test the new locale mechanisms. */ /* Test the new locale mechanisms. */
loc = newlocale (LC_ALL, locname, NULL); loc = newlocale (LC_ALL_MASK, locname, NULL);
if (loc == NULL) if (loc == NULL)
{ {
printf ("cannot create locale object for locale %s\n", locname); printf ("cannot create locale object for locale %s\n", locname);

View File

@ -46,11 +46,6 @@ shared-only-routines += divdi3 libgcc-compat
endif endif
endif endif
ifeq ($(subdir):$(elf),linuxthreads:yes)
# See CFLAGS-initfini.s above; this is the same code.
CFLAGS-pt-initfini.s = -g0 -fpic -O1
endif
ifeq ($(subdir),string) ifeq ($(subdir),string)
CFLAGS-memcmp.c += -Wno-uninitialized CFLAGS-memcmp.c += -Wno-uninitialized
endif endif