From patchwork Sun Sep 16 22:57:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 184168 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 0BF392C0086 for ; Mon, 17 Sep 2012 08:58:34 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id A772425804; Sun, 16 Sep 2012 22:58:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nXhenT+jzFmo; Sun, 16 Sep 2012 22:58:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id A6B2D26163; Sun, 16 Sep 2012 22:58:27 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 55BF08F74B for ; Sun, 16 Sep 2012 22:58:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DE52B8BCE8 for ; Sun, 16 Sep 2012 22:58:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZtGVB+NUNlTC for ; Sun, 16 Sep 2012 22:58:04 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtp.smtpout.orange.fr (smtp12.smtpout.orange.fr [80.12.242.134]) by whitealder.osuosl.org (Postfix) with ESMTP id D372B8CD81 for ; Sun, 16 Sep 2012 22:58:03 +0000 (UTC) Received: from treguer.bzh.lan ([90.32.30.11]) by mwinf5d23 with ME id zyxy1j0020EPY8y03yy2ME; Mon, 17 Sep 2012 00:58:02 +0200 From: "Yann E. MORIN" To: buildroot@busybox.net Date: Mon, 17 Sep 2012 00:57:51 +0200 Message-Id: <1347836276-24262-7-git-send-email-yann.morin.1998@free.fr> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1347836276-24262-1-git-send-email-yann.morin.1998@free.fr> References: <1347836276-24262-1-git-send-email-yann.morin.1998@free.fr> Cc: Thomas Petazzoni , Maxime Ripard , "Yann E. MORIN" Subject: [Buildroot] [PATCH 06/11] doc: update after gettext changes X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net From: Thomas Petazzoni Signed-off-by: Thomas Petazzoni Acked-by: "Yann E. MORIN" Tested-by: Arnout Vandecappelle (Essensium/Mind) Acked-by: Arnout Vandecappelle (Essensium/Mind) CC: Samuel Martin --- docs/manual/adding-packages-gettext.txt | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/manual/adding-packages-gettext.txt b/docs/manual/adding-packages-gettext.txt index 1ed834e..e0df1a4 100644 --- a/docs/manual/adding-packages-gettext.txt +++ b/docs/manual/adding-packages-gettext.txt @@ -27,18 +27,14 @@ Therefore, Buildroot defines two configuration options: Therefore, packages that unconditionally need gettext should: -* Use +select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT+ and possibly - +select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT+, if libintl is - also needed +* Use +select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT+ * Use +$(if $(BR2_NEEDS_GETTEXT),gettext)+ in the package +DEPENDENCIES+ variable Packages that need gettext only when locale support is enabled should: -* Use +select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE+ and - possibly +select BR2_PACKAGE_LIBINTL if - BR2_NEEDS_GETTEXT_IF_LOCALE+, if libintl is also needed +* Use +select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE+ * Use +$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)+ in the package +DEPENDENCIES+ variable