From ae18fa3cadaef98c6a3e8de138edb4629856133b Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 20 Jul 2004 21:26:15 +0000 Subject: [PATCH] r1706: * dh_gconf: fix glob escaping in find for schemas. Closes: #260488 --- dh_gconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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%"); -- 2.39.2