From 78bc3e5c673df86308387a7c415a646862b67aaf Mon Sep 17 00:00:00 2001 From: Michael Catanzaro Date: Mon, 9 Nov 2020 15:51:23 -0600 Subject: [PATCH] Remove unused script --- update-gio-modules | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 update-gio-modules diff --git a/update-gio-modules b/update-gio-modules deleted file mode 100755 index d203db3..0000000 --- a/update-gio-modules +++ /dev/null @@ -1,19 +0,0 @@ -#! /bin/sh - -if test $# != 1; then - echo "usage: update-gio-modules host_triplet" 1>&2 - exit 1 -fi - -echo "Warning: update-gio-modules is deprecated and will be removed in glib2-2.28.0" - -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