From patchwork Fri Sep 1 16:26:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 22500 Received: (qmail 119377 invoked by alias); 1 Sep 2017 16:27:03 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 119359 invoked by uid 89); 1 Sep 2017 16:27:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.0 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-oi0-f66.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=dsA0MCvQPcwVDQdujxWC2t0JVgnAzrdsEv3iVw2pFZc=; b=DibXLxCnpxNXjaW4hF4BmPYUMwFiUgVP1Y6K4fJChPa6W43+m0YuXFGX2XPugpwHQo +eulRmbJ6JTwIqswxsbrPqUIq0ZOnFh7giv+ZrmDqDJWYejr795m8qoV6+/8hhl1bV9b iBlzcr09qaMS63Ou4N49OkCtfZeCevOQ6AIrbhAG0D6b+MZFcQoLTP2qCCHZ8lUJ2Lv8 raVsiLy2ykln7rCASIeHBbSpwD/sstAneywjQDxSiM5ZUk5Ye21Jg4aC7KVnWWXUvdLf TDeF+9PyQokWhXE+eSL85c725bIb5B20qm4pkwxCuEfOpipz+P6091EpolmvxFxMlYMo 0clA== X-Gm-Message-State: AHPjjUgMQ5aZS/xdniIkUs+c/UN3o1BL2pUJZMRqpo8mHi5dpe5tLM6r mVwRrMM9UYFqyI+wVQpYtUFeRy6jyIHZ X-Google-Smtp-Source: ADKCNb49tPk7FLyRT/LYWJy+1W537fIXVlGlSx0CsWhOlQ1Y1nJZIX+1PWifWCLr0L++KCXOusYHp1mdWetQYqubA/g= X-Received: by 10.202.79.205 with SMTP id d196mr2371682oib.2.1504283219473; Fri, 01 Sep 2017 09:26:59 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <20170726172424.GA410@gmail.com> <20170726185030.GA26664@altlinux.org> From: "H.J. Lu" Date: Fri, 1 Sep 2017 09:26:58 -0700 Message-ID: Subject: Re: [PATCH] Remove Roland McGrath et al. from libc.so banner To: "Carlos O'Donell" Cc: GNU C Library On Wed, Jul 26, 2017 at 12:06 PM, Carlos O'Donell wrote: > On 07/26/2017 03:04 PM, H.J. Lu wrote: >> On Wed, Jul 26, 2017 at 11:50 AM, Dmitry V. Levin wrote: >>> On Wed, Jul 26, 2017 at 10:24:24AM -0700, H.J. Lu wrote: >>>> I will check it today if there is no objection. >>>> >>>> H.J. >>> >>> There might be configure scripts in the wild that rely on the current >>> format of this banner, so please do not change it before the release. >> >> Did you mean that it can never be changed? > > I think the point was to avoid the change without giving distributions > time to catch up during a development cycle. For example in Fedora we > would catch this in Rawhide. So make the change as early as possible > when 2.27 opens. > This is what I am going to check in: * csu/version.c (banner): Remove "by Roland McGrath et al.". * nptl/Banner: Remove "by Ulrich Drepper et al.". From fbaa05c6642d9cc64f28037de18aed62a578502a Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Wed, 26 Jul 2017 10:21:31 -0700 Subject: [PATCH] Remove Roland McGrath/Ulrich Drepper et al. from DSO banner * csu/version.c (banner): Remove "by Roland McGrath et al.". * nptl/Banner: Remove "by Ulrich Drepper et al.". --- csu/version.c | 2 +- nptl/Banner | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/csu/version.c b/csu/version.c index e0d884dbf3..f3992ab6c8 100644 --- a/csu/version.c +++ b/csu/version.c @@ -24,7 +24,7 @@ static const char __libc_release[] = RELEASE; static const char __libc_version[] = VERSION; static const char banner[] = -"GNU C Library "PKGVERSION RELEASE" release version "VERSION", by Roland McGrath et al.\n\ +"GNU C Library "PKGVERSION RELEASE" release version "VERSION".\n\ Copyright (C) 2017 Free Software Foundation, Inc.\n\ This is free software; see the source for copying conditions.\n\ There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\ diff --git a/nptl/Banner b/nptl/Banner index 7c1487e7b6..8c88d52fdf 100644 --- a/nptl/Banner +++ b/nptl/Banner @@ -1 +1 @@ -Native POSIX Threads Library by Ulrich Drepper et al +Native POSIX Threads Library -- 2.13.5