From 39d71bc46e184e57a01ca1d93d3094f05f0cec9d Mon Sep 17 00:00:00 2001 From: James Knight Date: Fri, 8 Aug 2025 23:37:57 -0400 Subject: [PATCH] package/gvfs: remove schema compile and cleanup hook Dropping the need for this package to compile any schemas as the libglib2 package (a dependency) already handles this during target finalization. In addition, libglib2 already removes schemas from the target during target finalization so the gvfs-specific cleanup can be dropped. Signed-off-by: James Knight Signed-off-by: Thomas Petazzoni (cherry picked from commit 7b5735cc6914f694b2c3172244c5a925d55636fc) Signed-off-by: Thomas Perale --- package/gvfs/gvfs.mk | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk index 50efed1abb..5dc8a03def 100644 --- a/package/gvfs/gvfs.mk +++ b/package/gvfs/gvfs.mk @@ -156,16 +156,4 @@ GVFS_CONF_OPTS += \ -Dtmpfilesdir=no endif -define GVFS_REMOVE_TARGET_SCHEMAS - rm $(TARGET_DIR)/usr/share/glib-2.0/schemas/*.xml -endef - -define GVFS_COMPILE_SCHEMAS - $(HOST_DIR)/bin/glib-compile-schemas --targetdir=$(TARGET_DIR)/usr/share/glib-2.0/schemas $(STAGING_DIR)/usr/share/glib-2.0/schemas -endef - -GVFS_POST_INSTALL_TARGET_HOOKS += \ - GVFS_REMOVE_TARGET_SCHEMAS \ - GVFS_COMPILE_SCHEMAS - $(eval $(meson-package))