From 0fc926dbd11dc9239e209f6da028c4cb796e5577 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Fri, 26 Aug 2016 11:56:11 +0200 Subject: [PATCH] iputils: fix typo in libintl comment The sentence should end with a dot (.) and not a comma (,). Signed-off-by: Peter Korsgaard --- package/iputils/iputils.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/iputils/iputils.mk b/package/iputils/iputils.mk index 42dab08ba9..0a89120384 100644 --- a/package/iputils/iputils.mk +++ b/package/iputils/iputils.mk @@ -39,7 +39,7 @@ IPUTILS_DEPENDENCIES += libgcrypt # When gettext is enabled (BR2_PACKAGE_GETTEXT=y), and provides libintl # (BR2_NEEDS_GETTEXT=y), libgpg-error will link with libintl, and libgpg-error # is pulled in by libgcrypt. Since iputils doesn't use libtool, we have to link -# with libintl explicitly for static linking, +# with libintl explicitly for static linking. ifeq ($(BR2_STATIC_LIBS)$(BR2_NEEDS_GETTEXT)$(BR2_PACKAGE_GETTEXT),yyy) IPUTILS_MAKE_OPTS += ADDLIB='-lintl' endif