[Buildroot] [git commit branch/2019.08.x] package/gettext-tiny: fix gettext wrapper

Peter Korsgaard peter at korsgaard.com
Tue Nov 19 09:32:22 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=55e347999b8d12b1ed6a1703b054b4c9a31ee4e0
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2019.08.x

When a textdomain is specified, we ignore it twice: we shift args, and
we printf ${2}, which would yield an empty printf.

Fix that by not shifting, and just printf ${2}; this is nicer.

Signed-off-by: Yann E. MORIN <yann.morin.1998 at free.fr>
Cc: Vadim Kochan <vadim4j at gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
(cherry picked from commit b5afd8dfd5b3b6589441c37115cfb23aa31838f6)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/gettext-tiny/gettext-wrapper | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/gettext-tiny/gettext-wrapper b/package/gettext-tiny/gettext-wrapper
index 3791a3a1aa..11424824c3 100644
--- a/package/gettext-tiny/gettext-wrapper
+++ b/package/gettext-tiny/gettext-wrapper
@@ -19,6 +19,6 @@ done
 case ${#} in
     (0)   printf "missing arguments\n" >&2; return 1;;
     (1)   printf "%s" "${1}";;
-    (2)   shift; printf "%s" "${2}";;
+    (2)   printf "%s" "${2}";;
     (*)   printf "too many arguments\n" >&2; return 1;;
 esac


More information about the buildroot mailing list