]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_gconf
r1711: releasing version 4.2.18
[debhelper.git] / dh_gconf
index 33d83947e82d353de248f6636195ac9bb5fee9f0..19341af1c42defffe99e6c298a3d605578a59314 100755 (executable)
--- a/dh_gconf
+++ b/dh_gconf
@@ -19,7 +19,7 @@ dh_gconf is a debhelper program that is responsible for registering
 GConf schemas.
 
 It automatically generates the postinst and prerm fragments needed
-to register and unregister the schemas in etc/gconf/schemas.
+to register and unregister the schemas in usr/share/gconf/schemas.
 These fragements will use gconftool-2, so the package should depend on
 gconf2. This program will add an appropriate dependency to ${misc:Depends}.
 
@@ -45,7 +45,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
 
        if (-d "$new_schemas_dir") {
                # Get a list of the schemas
-               my $schemas = `find $new_schemas_dir -type f -name \*.schemas -printf '%P '`;
+               my $schemas = `find $new_schemas_dir -type f -name \\*.schemas -printf '%P '`;
                if ($schemas ne '') {
                        autoscript($package,"postinst","postinst-gconf","s%#SCHEMAS#%$schemas%");
                        autoscript($package,"prerm","prerm-gconf","s%#SCHEMAS#%$schemas%");