# HG changeset patch
# User Christopher Rogers <slaxemulator@gmail.com>
# Date 1293045002 0
# Node ID 6438ec4c58a5229a1c63caca8f692db55dcbc69f
# Parent  e6a70398c32df451cdffe17962f1943a9cefd8a8
Changed gdk-pixbuf post_install to --update-cache instead of creating a file in /etc/gtk-2.0. The file will now be in /usr/lib/gdk-pixbuf-2.0/2.10.0/ folder. This should fix problems with programs using .gif and .svg image files.

diff -r e6a70398c32d -r 6438ec4c58a5 gdk-pixbuf/receipt
--- a/gdk-pixbuf/receipt	Wed Dec 22 18:53:04 2010 +0000
+++ b/gdk-pixbuf/receipt	Wed Dec 22 19:10:02 2010 +0000
@@ -37,9 +37,6 @@
 # Pre and post install commands for Tazpkg.
 post_install()
 {
-	local arg
-	echo "Processing post-install commands..."
-	mkdir -p $1/etc/gtk-2.0/
-	chroot $1/ /usr/bin/gdk-pixbuf-query-loaders > $1/etc/gtk-2.0/gdk-pixbuf.loaders
-
+	echo "Updating /usr/lib/gdk-pixbuf/2.10.0/loaders.cache file..."
+	chroot $1/ /usr/bin/gdk-pixbuf-query-loaders --update-cache
 }