18a5fa703d
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/gtk2#7ef3e63372e5e049d7a4ada9e011e4491015ddb3
18 lines
313 B
Bash
Executable File
18 lines
313 B
Bash
Executable File
#! /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
|