18 lines
319 B
Plaintext
18 lines
319 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
if test $# != 1; then
|
||
|
echo "usage: update-gio-modules host_triplet" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
umask 022
|
||
|
|
||
|
case "$host" in
|
||
|
alpha*|ia64*|powerpc64*|ppc64*|s390x*|sparc64*|x86_64*)
|
||
|
/usr/bin/gio-querymodules-64 /usr/lib64/gio/modules
|
||
|
;;
|
||
|
*)
|
||
|
/usr/bin/gio-querymodules-32 /usr/lib/gio/modules
|
||
|
;;
|
||
|
esac
|