r46517 - in /desktop/unstable/totem/debian: changelog rules
biebl at users.alioth.debian.org
biebl at users.alioth.debian.org
Mon Oct 12 15:48:33 UTC 2015
Author: biebl
Date: Mon Oct 12 15:48:33 2015
New Revision: 46517
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=46517
Log:
Quote file globs passed to find to avoid expansion by the shell and use
the builtin -delete method.
Modified:
desktop/unstable/totem/debian/changelog
desktop/unstable/totem/debian/rules
Modified: desktop/unstable/totem/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/totem/debian/changelog?rev=46517&op=diff
==============================================================================
--- desktop/unstable/totem/debian/changelog [utf-8] (original)
+++ desktop/unstable/totem/debian/changelog [utf-8] Mon Oct 12 15:48:33 2015
@@ -2,6 +2,8 @@
* New upstream release.
* Drop obsolete --disable-vegas-plugin configure flag.
+ * Quote file globs passed to find to avoid expansion by the shell and use
+ the builtin -delete method.
-- Michael Biebl <biebl at debian.org> Mon, 12 Oct 2015 17:28:15 +0200
Modified: desktop/unstable/totem/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/totem/debian/rules?rev=46517&op=diff
==============================================================================
--- desktop/unstable/totem/debian/rules [utf-8] (original)
+++ desktop/unstable/totem/debian/rules [utf-8] Mon Oct 12 15:48:33 2015
@@ -28,5 +28,5 @@
dh_python2 -ptotem-plugins /usr/lib/totem/plugins
common-binary-predeb-arch::
- find debian -name *.a -exec rm '{}' \;
- find debian -name *.la -exec rm '{}' \;
+ find debian -name '*.a' -delete
+ find debian -name '*.la' -delete
More information about the pkg-gnome-commits
mailing list