diff options
author | Carlos O'Donell <carlos@redhat.com> | 2020-10-02 09:23:35 -0400 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2020-10-02 15:34:21 -0400 |
commit | 23482f788665df83edc8b542698f45fed45a2711 (patch) | |
tree | d78137cf6e0022111590cf8879de2281c3fe5112 | |
parent | 69beb5cbf85cae1c61fe7432500ac10880dc7b07 (diff) | |
download | glibc-23482f788665df83edc8b542698f45fed45a2711.tar.gz glibc-23482f788665df83edc8b542698f45fed45a2711.tar.xz glibc-23482f788665df83edc8b542698f45fed45a2711.zip |
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).
-rw-r--r-- | version.h | 2 |
1 files changed, 1 insertions, 1 deletions
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" |