From: joey Date: Thu, 9 Dec 2004 19:33:18 +0000 (+0000) Subject: r1730: releasing version 4.2.27 X-Git-Tag: 4.2.27 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=780981925867f25cdd0171a046557402324011e5;p=debhelper.git r1730: releasing version 4.2.27 --- diff --git a/debian/changelog b/debian/changelog index 67ebbd1..9d9f465 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (4.2.27) unstable; urgency=low + + * dh_desktop: Fix underescaping of *.desktop in call to find. + Closes: #284832 + + -- Joey Hess Thu, 9 Dec 2004 14:32:41 -0500 + debhelper (4.2.26) unstable; urgency=low * dh_makeshlibs spanish translation update diff --git a/dh_desktop b/dh_desktop index 2034606..29970e4 100644 --- a/dh_desktop +++ b/dh_desktop @@ -32,7 +32,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # usr/share/applications and thus might need # update-desktop-database be called. Other desktop # files don't. - my $desktop_files = `find $tmp/usr/share/applications -type f -name \*.desktop -printf '%p\n'`; + my $desktop_files = `find $tmp/usr/share/applications -type f -name \\*.desktop -printf '%p\n'`; if ($desktop_files && ! $dh{NOSCRIPTS}) { autoscript($package,"postinst","postinst-desktop"); autoscript($package,"postrm","postrm-desktop");