From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id E50303870907; Fri, 2 Oct 2020 19:36:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E50303870907 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Carlos O'Donell To: glibc-cvs@sourceware.org Subject: [glibc/release/2.32/master] Set version.h RELEASE to "stable" (Bug 26700) X-Act-Checkin: glibc X-Git-Author: Carlos O'Donell X-Git-Refname: refs/heads/release/2.32/master X-Git-Oldrev: 69beb5cbf85cae1c61fe7432500ac10880dc7b07 X-Git-Newrev: 23482f788665df83edc8b542698f45fed45a2711 Message-Id: <20201002193656.E50303870907@sourceware.org> Date: Fri, 2 Oct 2020 19:36:56 +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: Fri, 02 Oct 2020 19:36:57 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=23482f788665df83edc8b542698f45fed45a2711 commit 23482f788665df83edc8b542698f45fed45a2711 Author: Carlos O'Donell Date: Fri Oct 2 09:23:35 2020 -0400 Set version.h RELEASE to "stable" (Bug 26700) The RELEASE macro was accidentaly set to "release" instead of the expected "stable" by the release manager. This is a mistake that leads to the build using "-g -O1" instead of "-g -O2" if configure was executed with "CFLAGS=" (CFLAGS set but empty). Diff: --- version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.h b/version.h index 83cd196798..e6ca7a8857 100644 --- a/version.h +++ b/version.h @@ -1,4 +1,4 @@ /* This file just defines the current version number of libc. */ -#define RELEASE "release" +#define RELEASE "stable" #define VERSION "2.32"