[Pkg-cli-apps-commits] [SCM] banshee-community-extensions branch, experimental, updated. debian/2.1.1-2-9-g59d373e

Chow Loong Jin hyperair at ubuntu.com
Sat Aug 27 14:51:49 UTC 2011


The following commit has been merged in the experimental branch:
commit bc88cbfb0e9333ce8b27dfcb54da3e29195c8e0d
Author: Chow Loong Jin <hyperair at ubuntu.com>
Date:   Sat Aug 27 22:45:18 2011 +0800

    Fix deletion of .la files
    
    Apparently -delete is evaluated as part of the predicate of find, so we need to
    add brackets to make sure it deletes .la things

diff --git a/debian/rules b/debian/rules
index 11d3553..fead3db 100755
--- a/debian/rules
+++ b/debian/rules
@@ -44,7 +44,7 @@ override_dh_auto_configure:
 
 override_dh_auto_install:
 	dh_auto_install
-	find debian/tmp -name '*.la' -o -name '*.a' -delete
+	find debian/tmp \( -name '*.la' -o -name '*.a' \) -delete
 
 override_dh_gencontrol:
 	dh_gencontrol -- -Vbanshee:Version=$(BANSHEE_VERSION)

-- 
banshee-community-extensions



More information about the Pkg-cli-apps-commits mailing list