26fdd9
#! /bin/sh
26fdd9
26fdd9
if test $# != 1; then
26fdd9
  echo usage: update-gtk-immodules host_triplet 1>&2
26fdd9
  exit 1
26fdd9
fi
26fdd9
 
26fdd9
umask 022
26fdd9
26fdd9
case "$1" in
26fdd9
  alpha*|ia64*|ppc64*|powerpc64*|s390x*|x86_64*|aarch64*)
26fdd9
   /usr/bin/gtk-query-immodules-2.0-64 --update-cache
26fdd9
   ;;
26fdd9
  *)
26fdd9
   /usr/bin/gtk-query-immodules-2.0-32 --update-cache
26fdd9
   ;;
26fdd9
esac