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 --- debian/changelog | 2 ++ dh_installgsettings | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 04a5d97c..ad0c7675 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ debhelper (8.1.5) UNRELEASED; urgency=low * dh_ucf: New command, contributed by Jeroen Schot. Closes: #213078 + * dh_installgsettings: Correct bug in use of find that caused some + gsettings files to be missed. Closes: #624377 -- Joey Hess Mon, 25 Apr 2011 19:30:01 -0400 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