summaryrefslogtreecommitdiff
path: root/dh_gconf
diff options
context:
space:
mode:
authorjoey <joey>2004-07-20 21:26:15 +0000
committerjoey <joey>2004-07-20 21:26:15 +0000
commitae18fa3cadaef98c6a3e8de138edb4629856133b (patch)
treec2156e88659f9c5e2a7bf7ed336df2b11cd6f9d8 /dh_gconf
parent253c050ec67d63af48cc74154f84b7765c1aa903 (diff)
r1706: * dh_gconf: fix glob escaping in find for schemas. Closes: #260488
Diffstat (limited to 'dh_gconf')
-rwxr-xr-xdh_gconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_gconf b/dh_gconf
index 33d83947..4e34cbd9 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%");