From e801352c789c08e113451b7e6dd5ca4784691737 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 16 May 2006 20:11:05 +0000 Subject: [PATCH] removed compilation of *.pyc --- debian/changelog | 2 ++ debian/rules | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 300cbf4c..0ac63b80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,8 @@ fail2ban (0.6.1-4) unstable; urgency=low - Clean up of debian/rules: removed commented out dh_ scripts which definetly will never be used - debhelper and dpatch moved to Build-Depends + - added --no-compile for python setup.py install, and removed explicit + cleaning of .pyc's -- Yaroslav Halchenko Tue, 16 May 2006 15:53:06 -0400 diff --git a/debian/rules b/debian/rules index cfef50fd..e4453f76 100755 --- a/debian/rules +++ b/debian/rules @@ -43,7 +43,7 @@ clean: clean-inits unpatch rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. - rm -rf changelog.gz $(MANPAGE) build* `find -iname '*.pyc' ` + rm -rf changelog.gz $(MANPAGE) build* dh_clean @@ -54,7 +54,7 @@ install: build dh_installdirs # Add here commands to install the package into debian/fail2ban. - python setup.py install --root=$(DESTDIR) + python setup.py install --root=$(DESTDIR) --no-compile mkdir -p $(DESTDIR)/etc cp config/fail2ban.conf.iptables $(DESTDIR)/etc/fail2ban.conf