From: joey Date: Tue, 20 Jul 2004 21:26:15 +0000 (+0000) Subject: r1706: * dh_gconf: fix glob escaping in find for schemas. Closes: #260488 X-Git-Tag: 4.2.16^0 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ae18fa3cadaef98c6a3e8de138edb4629856133b;p=debhelper.git r1706: * dh_gconf: fix glob escaping in find for schemas. Closes: #260488 --- diff --git a/dh_gconf b/dh_gconf index 33d8394..4e34cbd 100755 --- a/dh_gconf +++ b/dh_gconf @@ -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%");