diff options
author | joey <joey> | 2004-07-20 21:26:15 +0000 |
---|---|---|
committer | joey <joey> | 2004-07-20 21:26:15 +0000 |
commit | ae18fa3cadaef98c6a3e8de138edb4629856133b (patch) | |
tree | c2156e88659f9c5e2a7bf7ed336df2b11cd6f9d8 | |
parent | 253c050ec67d63af48cc74154f84b7765c1aa903 (diff) | |
download | debhelper-ae18fa3cadaef98c6a3e8de138edb4629856133b.tar.gz |
r1706: * dh_gconf: fix glob escaping in find for schemas. Closes: #2604884.2.16
-rwxr-xr-x | dh_gconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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%"); |