8474ccae9d
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
12 lines
339 B
Bash
Executable file
12 lines
339 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# This is a wrapper script that calls update-gtk-immodules-2.0 (GTK+2)
|
|
# and/or update-gtk-immodules-3.0 (GTK+3) to do the actual updating.
|
|
|
|
if [ -x /usr/bin/update-gtk-immodules-2.0 ]; then
|
|
/usr/bin/update-gtk-immodules-2.0 $*
|
|
fi
|
|
if [ -x /usr/bin/update-gtk-immodules-3.0 ]; then
|
|
/usr/bin/update-gtk-immodules-3.0 $*
|
|
fi
|
|
|