BIND 10 master, updated. ee5c66336b0baf8424d5be04670dd5b96344e07e [master] remove __pycache__ directory with distclean

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Feb 5 00:05:05 UTC 2013


The branch, master has been updated
       via  ee5c66336b0baf8424d5be04670dd5b96344e07e (commit)
       via  6eb06132ab8aa9e1e4c6b73a233952b4bf23baff (commit)
      from  d1ae5b15754d5d359c52fd6f58e23e0e0907d4f3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ee5c66336b0baf8424d5be04670dd5b96344e07e
Author: Jeremy C. Reed <jreed at isc.org>
Date:   Mon Feb 4 18:03:27 2013 -0600

    [master] remove __pycache__ directory with distclean
    
    (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.

commit 6eb06132ab8aa9e1e4c6b73a233952b4bf23baff
Author: Jeremy C. Reed <jreed at isc.org>
Date:   Mon Feb 4 18:01:30 2013 -0600

    [master] don't include run.sh in distfile
    
    The run.sh.in is in the distfile.
    (issue reported by emhn: was removed with distclean but was in tarball)
    Trivial so didn't get review.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/python/isc/bind10/Makefile.am |    5 +++++
 tests/system/Makefile.am              |    2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/bind10/Makefile.am b/src/lib/python/isc/bind10/Makefile.am
index aa5d0ab..8d2f179 100644
--- a/src/lib/python/isc/bind10/Makefile.am
+++ b/src/lib/python/isc/bind10/Makefile.am
@@ -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)
diff --git a/tests/system/Makefile.am b/tests/system/Makefile.am
index 663258b..aed1d79 100644
--- a/tests/system/Makefile.am
+++ b/tests/system/Makefile.am
@@ -6,7 +6,7 @@ distclean-local:
 
 # Most of the files under this directory (including test subdirectories)
 # must be listed in EXTRA_DIST.
-EXTRA_DIST = README cleanall.sh ifconfig.sh start.pl stop.pl run.sh runall.sh
+EXTRA_DIST = README cleanall.sh ifconfig.sh start.pl stop.pl runall.sh
 EXTRA_DIST += common/default_user.csv
 EXTRA_DIST += glue/auth.good glue/example.good glue/noglue.good glue/test.good
 EXTRA_DIST += glue/tests.sh glue/clean.sh



More information about the bind10-changes mailing list