]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
python: Make all *.py not executeable.
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 3 Sep 2010 18:03:34 +0000 (20:03 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 3 Sep 2010 18:03:34 +0000 (20:03 +0200)
pkgs/core/python/python.nm

index 48716e93a97ea491ec1daeb9be17405e0ef36729..a4d3598e5622fafcd11472245022f9c64a6b889d 100644 (file)
@@ -78,4 +78,7 @@ define STAGE_INSTALL
        cd $(DIR_APP) && make install DESTDIR=$(BUILDROOT)
 
        rm -rf $(BUILDROOT)/usr/lib/python*/test/
+
+       # All *.py files don't need to be executeable...
+       find $(BUILDROOT)/usr/lib/python*/ -name "*.py" | xargs chmod a-x -v
 endef