summaryrefslogtreecommitdiff
path: root/dh_installgsettings
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-04-27 21:33:48 -0400
committerJoey Hess <joey@kitenet.net>2011-04-27 21:33:48 -0400
commit3ee3359a3e3e07d5d18c429a3535219d225bbb20 (patch)
tree492a4c43a280ba37173655329db2b358b1001c72 /dh_installgsettings
parentcf567c40f965ed9163a1d0f906eff57d0876cfb4 (diff)
dh_installgsettings: Correct bug in use of find that caused some gsettings files to be missed. Closes: #624377
Diffstat (limited to 'dh_installgsettings')
-rwxr-xr-xdh_installgsettings2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installgsettings b/dh_installgsettings
index df38e511..8500706c 100755
--- a/dh_installgsettings
+++ b/dh_installgsettings
@@ -72,7 +72,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
if (-d "$gsettings_schemas_dir") {
# Get a list of the schemas
- my $schemas = `find $gsettings_schemas_dir -type f -name \\*.xml -o -name \\*.override -printf '%P '`;
+ my $schemas = `find $gsettings_schemas_dir -type f \\( -name \\*.xml -o -name \\*.override \\) -printf '%P '`;
if ($schemas ne '') {
addsubstvar($package, "misc:Depends", "dconf-gsettings-backend | gsettings-backend");
}