mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
5019f883f3
svn path=/nixpkgs/trunk/; revision=24384
24 lines
514 B
Diff
24 lines
514 B
Diff
http://bugs.gentoo.org/239372
|
|
|
|
patch by Dmitry Karasik
|
|
|
|
--- recode-3.6/m4/gettext.m4
|
|
+++ recode-3.6/m4/gettext.m4
|
|
@@ -109,12 +109,12 @@
|
|
else
|
|
ac_items="$LINGUAS"
|
|
for ac_item in $ac_items; do
|
|
- case "$ALL_LINGUAS" in
|
|
- *$ac_item*)
|
|
+ for supported_item in $ALL_LINGUAS; do
|
|
+ if test "$ac_item" = "$supported_item"; then
|
|
ac_print="$ac_print $ac_item"
|
|
MOFILES="$MOFILES $ac_item.mo"
|
|
- ;;
|
|
- esac
|
|
+ fi
|
|
+ done
|
|
done
|
|
fi
|
|
AC_SUBST(MOFILES)
|