Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1 | From 43f1b04449bb1cf7e0092263f1c2a25f3fca08ef Mon Sep 17 00:00:00 2001 |
| 2 | From: Ross Burton <ross.burton@intel.com> |
| 3 | Date: Tue, 8 Nov 2016 23:07:41 +0000 |
| 4 | Subject: [PATCH 5/6] systemtap: remove explicit msgfmt check |
| 5 | |
| 6 | There is no need to explicitly check that msgfmt was found as the gettext macros |
| 7 | handle this for us if NLS is enabled. |
| 8 | |
| 9 | Upstream-Status: Pending |
| 10 | Signed-off-by: Ross Burton <ross.burton@intel.com> |
| 11 | |
| 12 | --- |
| 13 | configure.ac | 4 ---- |
| 14 | 1 file changed, 4 deletions(-) |
| 15 | |
| 16 | diff --git a/configure.ac b/configure.ac |
| 17 | index 2ea9b3cbf..95417f59c 100644 |
| 18 | --- a/configure.ac |
| 19 | +++ b/configure.ac |
| 20 | @@ -36,10 +36,6 @@ AC_CHECK_FUNCS(openat) |
| 21 | AM_GNU_GETTEXT(external) |
| 22 | AM_GNU_GETTEXT_VERSION([0.19.4]) |
| 23 | |
| 24 | -if test "x$GMSGFMT" = "x:"; then |
| 25 | - AC_MSG_ERROR([missing gnu /usr/bin/msgfmt]) |
| 26 | -fi |
| 27 | - |
| 28 | # We want the 'PYTHON' varible to be python version 2. We also want |
| 29 | # our custom 'PYTHON3' varible to be python version 3. |
| 30 | # |
| 31 | -- |
| 32 | 2.11.0 |
| 33 | |