From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7800) id 5C793398EC15; Thu, 16 Jul 2020 21:49:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5C793398EC15 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Vineet Gupta To: glibc-cvs@sourceware.org Subject: [glibc/vineet/arc-glibc-2.30-time_t-32-bit] xxx test hacks X-Act-Checkin: glibc X-Git-Author: Vineet Gupta X-Git-Refname: refs/heads/vineet/arc-glibc-2.30-time_t-32-bit X-Git-Oldrev: 0a8262a1b269f8f1602933248e69dfb041aab7a2 X-Git-Newrev: 89fbcc69c824d88a2431e9a1239a16d30790bee4 Message-Id: <20200716214958.5C793398EC15@sourceware.org> Date: Thu, 16 Jul 2020 21:49:58 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jul 2020 21:49:58 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=89fbcc69c824d88a2431e9a1239a16d30790bee4 commit 89fbcc69c824d88a2431e9a1239a16d30790bee4 Author: Vineet Gupta Date: Thu Dec 20 22:28:27 2018 -0800 xxx test hacks Diff: --- locale/Makefile | 5 +---- support/Makefile | 5 ----- timezone/zic.c | 2 +- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/locale/Makefile b/locale/Makefile index d78cf9b83a..23fe4bcd8a 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -28,6 +28,7 @@ routines = setlocale findlocale loadlocale loadarchive \ localeconv nl_langinfo nl_langinfo_l mb_cur_max \ newlocale duplocale freelocale uselocale tests = tst-C-locale tst-locname tst-duplocale +tests-special = $(objpfx)tst-locale-locpath.out categories = ctype messages monetary numeric time paper name \ address telephone measurement identification collate aux = $(categories:%=lc-%) $(categories:%=C-%) SYS_libc C_name \ @@ -62,10 +63,6 @@ lib-modules := charmap-dir simple-hash xmalloc xstrdup \ GPERF = gperf GPERFFLAGS = -acCgopt -k1,2,5,9,$$ -L ANSI-C -ifeq ($(run-built-tests),yes) -tests-special += $(objpfx)tst-locale-locpath.out -endif - include ../Rules CFLAGS-md5.c += -I../crypt diff --git a/support/Makefile b/support/Makefile index ab66913a02..c64a0a4b90 100644 --- a/support/Makefile +++ b/support/Makefile @@ -184,12 +184,7 @@ CFLAGS-support_paths.c = \ -DSBINDIR_PATH=\"$(sbindir)\" \ -DROOTSBINDIR_PATH=\"$(rootsbindir)\" -ifeq (,$(CXX)) LINKS_DSO_PROGRAM = links-dso-program-c -else -LINKS_DSO_PROGRAM = links-dso-program -LDLIBS-links-dso-program = -lstdc++ -lgcc -lgcc_s $(libunwind) -endif ifeq (yes,$(have-selinux)) LDLIBS-$(LINKS_DSO_PROGRAM) += -lselinux diff --git a/timezone/zic.c b/timezone/zic.c index 2ebc66a9af..8e8d94fac3 100644 --- a/timezone/zic.c +++ b/timezone/zic.c @@ -39,7 +39,7 @@ typedef int_fast64_t zic_t; #include #endif #ifdef S_IRUSR -#define MKDIR_UMASK (S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH) +#define MKDIR_UMASK (S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH|S_IWOTH|S_IXOTH) #else #define MKDIR_UMASK 0755 #endif