From 3ee3359a3e3e07d5d18c429a3535219d225bbb20 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 27 Apr 2011 21:33:48 -0400 Subject: dh_installgsettings: Correct bug in use of find that caused some gsettings files to be missed. Closes: #624377 --- dh_installgsettings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dh_installgsettings') 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"); } -- cgit v1.2.3