From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13020 invoked by alias); 5 Sep 2019 13:42:04 -0000 Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org Received: (qmail 12984 invoked by uid 89); 5 Sep 2019 13:42:04 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=our, HContent-Transfer-Encoding:8bit X-HELO: mail-wr1-f45.google.com Received: from mail-wr1-f45.google.com (HELO mail-wr1-f45.google.com) (209.85.221.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 05 Sep 2019 13:42:02 +0000 Received: by mail-wr1-f45.google.com with SMTP id h7so2827161wrt.13 for ; Thu, 05 Sep 2019 06:42:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=GmOZMTwC4Gu5dwJ6te8Y3PAQ0fgruux3teu2jh1+y5k=; b=TRPxJN7WkV/lOmfwnWiUSA7bZN2diH5CGI1YgfVaJVC9tVcRfpuAhBt/F9a5hgQ0lY f/P8M3+mgKH40ClEaZEIUePpjaO26uCYQLo6IKCzygU3GZhBz9owr2zZF7Gww/+omTjt HuMFqldUfdzuzaMRjzIyxGWqVcMjARAFyydvY= Return-Path: Received: from hex.int.rpsys.net (5751f4a1.skybroadband.com. [87.81.244.161]) by smtp.gmail.com with ESMTPSA id j22sm4174798wre.45.2019.09.05.06.41.57 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 05 Sep 2019 06:41:58 -0700 (PDT) From: Richard Purdie To: systemtap@sourceware.org Cc: Ross Burton Subject: [PATCH 3/4] configure: Remove explicit msgfmt check Date: Thu, 05 Sep 2019 13:42:00 -0000 Message-Id: <20190905134154.5478-3-richard.purdie@linuxfoundation.org> In-Reply-To: <20190905134154.5478-1-richard.purdie@linuxfoundation.org> References: <20190905134154.5478-1-richard.purdie@linuxfoundation.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SW-Source: 2019-q3/txt/msg00065.txt.bz2 From: Ross Burton There is no need to explicitly check that msgfmt was found as the gettext macros handle this for us if NLS is enabled. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- configure.ac | 4 ---- 1 file changed, 4 deletions(-) diff --git a/configure.ac b/configure.ac index 1a6eb1874..96c5c9db7 100644 --- a/configure.ac +++ b/configure.ac @@ -36,10 +36,6 @@ AC_CHECK_FUNCS(openat) AM_GNU_GETTEXT(external) AM_GNU_GETTEXT_VERSION([0.19.4]) -if test "x$GMSGFMT" = "x:"; then - AC_MSG_ERROR([missing gnu /usr/bin/msgfmt]) -fi - # We want the 'PYTHON' varible to be python version 2. We also want # our custom 'PYTHON3' varible to be python version 3. # -- 2.17.1