From patchwork Tue Nov 28 14:38:23 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 842179 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-87595-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="F+kyBjX7"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ymR9z2DdYz9sNV for ; Wed, 29 Nov 2017 01:38:47 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=aI9nVz9xBs1JYrpz/igrDJKeYRdxsXj7ZvIRsXsDNt7phRfUL8UDR uLDLMN/jVWfPPIuYoNvt6rNRmwYA/OMjXFEHmNUOS1w8vrL6o2Q7oFJdmD342MK4 oi1zyCOG2kUOZ6QODcbz/8Zs7hnh2dyM0Y2468jX5MNhypY7yVmkYA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=ou6chDnIDJB4W2QxPyLs/P6VGYI=; b=F+kyBjX76C/ba4I7KHbOue1bfI6B TmcZr2mPwfsGru63KW944g8+dLZ/28ZVIxTbVOcUp885iDIkq+FsWGPaV82jOZpP L0Z3CbFNedF91LIacGshO8iKA9tPhrQTywKytbwC8wyF5y/+XXuKWiiCT7TX65l1 7Sw6Gil1cn5s5go= Received: (qmail 87286 invoked by alias); 28 Nov 2017 14:38:41 -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 87276 invoked by uid 89); 28 Nov 2017 14:38:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_NONE, SPF_NEUTRAL autolearn=ham version=3.3.2 spammy= X-HELO: homiemail-a52.g.dreamhost.com From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Cc: mfabian@redhat.com, carlos@redhat.com Subject: [COMMITTED] localedata: Remove duplicate cs_CZ from LOCALES Date: Tue, 28 Nov 2017 20:08:23 +0530 Message-Id: <1511879903-23525-1-git-send-email-siddhesh@sourceware.org> The LOCALES variable in the localedata had two instances of cs_CZ which generated the following warning: ../gen-locales.mk:11: target '/opt/build/localedata/cs_CZ.UTF-8/LC_CTYPE' given more than once in the same rule Dropped the duplicate entry and pushed as obvious. Siddhesh --- ChangeLog | 4 ++++ localedata/Makefile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f7616dc..14b2455 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2017-11-28 Siddhesh Poyarekar + + * localedata/Makefile (LOCALES): Remove duplicate cs_CZ.UTF-8. + 2017-11-28 Victor Rodriguez Icarus Sparry diff --git a/localedata/Makefile b/localedata/Makefile index 6e4f9ea..b9f77d6 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -108,7 +108,7 @@ LOCALES := de_DE.ISO-8859-1 de_DE.UTF-8 en_US.ANSI_X3.4-1968 \ nb_NO.ISO-8859-1 nn_NO.ISO-8859-1 tr_TR.UTF-8 cs_CZ.UTF-8 \ zh_TW.EUC-TW fa_IR.UTF-8 fr_FR.UTF-8 ja_JP.UTF-8 si_LK.UTF-8 \ tr_TR.ISO-8859-9 en_GB.UTF-8 uk_UA.UTF-8 hu_HU.UTF-8 lv_LV.UTF-8 \ - pl_PL.UTF-8 cs_CZ.UTF-8 + pl_PL.UTF-8 include ../gen-locales.mk endif