mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
package/gettext-tiny: fix gettext wrapper
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@free.fr>
Cc: Vadim Kochan <vadim4j@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
75a257f45e
commit
b5afd8dfd5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user