]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1730: releasing version 4.2.27 4.2.27
authorjoey <joey>
Thu, 9 Dec 2004 19:33:18 +0000 (19:33 +0000)
committerjoey <joey>
Thu, 9 Dec 2004 19:33:18 +0000 (19:33 +0000)
debian/changelog
dh_desktop

index 67ebbd11f3405f85006431e503db4900825bb25d..9d9f4659819512f7a51a62641a8fd6839c5575ed 100644 (file)
@@ -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 <joeyh@debian.org>  Thu,  9 Dec 2004 14:32:41 -0500
+
 debhelper (4.2.26) unstable; urgency=low
 
   * dh_makeshlibs spanish translation update
index 203460616d8286fadc8377713e03a2a2e1074141..29970e4527bbbb3858b53b1d1368c229c32e3fc4 100644 (file)
@@ -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");