From: nbd Date: Tue, 1 Feb 2011 20:31:38 +0000 (+0000) Subject: gettext: remove () around the N_ macro to fix packages that concantenate strings... X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=11e46add0f3b2caa12b19d0e1c0567ec15854fcd;p=packages.git gettext: remove () around the N_ macro to fix packages that concantenate strings passed through it (fixes elfutils compile) git-svn-id: svn://svn.openwrt.org/openwrt/packages@25289 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/libs/gettext/src/include/libintl.h b/libs/gettext/src/include/libintl.h index 0e13c1a46..f101343d4 100644 --- a/libs/gettext/src/include/libintl.h +++ b/libs/gettext/src/include/libintl.h @@ -42,7 +42,7 @@ ((Count) == 1 ? (const char *) (Singular) : (const char *) (Plural)) #define _(String) (String) -#define N_(String) (String) +#define N_(String) String #ifndef _LOCALE_H /* #define setlocale(Category, Locale) ((char *)NULL) */