From: Vincent Bernat Date: Sun, 27 Sep 2009 09:01:24 +0000 (+0000) Subject: More general rule to remove executable bit X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f0f7520cd0fb2d740e3f6de88adf898bb8e57935;p=roundcube.git More general rule to remove executable bit --- diff --git a/debian/rules b/debian/rules index 752ed66..d737fee 100755 --- a/debian/rules +++ b/debian/rules @@ -38,7 +38,7 @@ binary-install/roundcube-core:: cp -r $(CURDIR)/debian/sql/* $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/upgrade/. # Some files are executable while not being scripts or binary... - find $(CURDIR)/debian/roundcube-core/usr/share/roundcube/program -type f -print0 | xargs -r0 chmod -x + find $(CURDIR)/debian/roundcube-core/usr/share/roundcube -type f -print0 | xargs -r0 chmod -x # Remove useless file rm $(CURDIR)/debian/roundcube-core/usr/share/roundcube/bin/*.sh find $(CURDIR)/debian/roundcube-core -name '._*' -print0 | xargs -r0 rm