]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] remove __pycache__ directory with distclean
authorJeremy C. Reed <jreed@isc.org>
Tue, 5 Feb 2013 00:03:27 +0000 (18:03 -0600)
committerJeremy C. Reed <jreed@isc.org>
Tue, 5 Feb 2013 00:03:27 +0000 (18:03 -0600)
(reported by emhn: left over after a distclean)

Some of the makefiles clear that but not that one. We do
automate the distclean (via distcheck) as part of our
buildfarm. But I think this __pycache__ was introduced in python3.2 and
those build systems don't have it.

This is trivial so didn't get review.

src/lib/python/isc/bind10/Makefile.am

index aa5d0ab1ac037b4bc6dc46272623e99ed63cc30e..8d2f179044e2babca439def5925f0cc5a1fd270c 100644 (file)
@@ -3,3 +3,8 @@ SUBDIRS = . tests
 python_PYTHON = __init__.py sockcreator.py component.py special_component.py \
                socket_cache.py
 pythondir = $(pyexecdir)/isc/bind10
+
+CLEANDIRS = __pycache__
+
+clean-local:
+       rm -rf $(CLEANDIRS)