gtk2/update-gtk-immodules

18 lines
313 B
Plaintext
Raw Permalink Normal View History

2007-01-22 19:23:46 +00:00
#! /bin/sh
if test $# != 1; then
echo usage: update-gtk-immodules host_triplet 1>&2
exit 1
fi
umask 022
2013-07-04 17:37:21 +00:00
case "$1" in
2013-11-11 16:51:00 +00:00
alpha*|ia64*|ppc64*|powerpc64*|s390x*|x86_64*|aarch64*)
2013-07-04 17:37:21 +00:00
/usr/bin/gtk-query-immodules-2.0-64 --update-cache
2007-01-22 19:23:46 +00:00
;;
*)
2013-07-04 17:37:21 +00:00
/usr/bin/gtk-query-immodules-2.0-32 --update-cache
2007-01-22 19:23:46 +00:00
;;
esac