removed compilation of *.pyc

debian-releases/etch
Yaroslav Halchenko 19 years ago
parent 302c1b1c4b
commit e801352c78

2
debian/changelog vendored

@ -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 <debian@onerussian.com> Tue, 16 May 2006 15:53:06 -0400

4
debian/rules vendored

@ -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

Loading…
Cancel
Save