You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
313 B
18 lines
313 B
6 years ago
|
#! /bin/sh
|
||
|
|
||
|
if test $# != 1; then
|
||
|
echo usage: update-gtk-immodules host_triplet 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
umask 022
|
||
|
|
||
|
case "$1" in
|
||
|
alpha*|ia64*|ppc64*|powerpc64*|s390x*|x86_64*|aarch64*)
|
||
|
/usr/bin/gtk-query-immodules-2.0-64 --update-cache
|
||
|
;;
|
||
|
*)
|
||
|
/usr/bin/gtk-query-immodules-2.0-32 --update-cache
|
||
|
;;
|
||
|
esac
|