BIND 10 master, updated. 93cb134fd8ff6fc6c9d63d0a9f6ca3defed43721 [master] also have clean remove the python optimized byte-compiled file
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Mar 25 14:38:46 UTC 2013
The branch, master has been updated
via 93cb134fd8ff6fc6c9d63d0a9f6ca3defed43721 (commit)
via da42298dc1ad39a5073bb8b221e05ccf8fb5464c (commit)
via 94aade43c190a9dccca5469009b2604efb7c5664 (commit)
from b1a6659c841d75b8e918dc3a1e165188d97d56fe (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 93cb134fd8ff6fc6c9d63d0a9f6ca3defed43721
Author: Jeremy C. Reed <jreed at isc.org>
Date: Mon Mar 25 09:37:50 2013 -0500
[master] also have clean remove the python optimized byte-compiled file
It has been failing on distclean for around a week at least
due to file left around.
Newer python's keep under __pycache__ which was already handled.
Reviewed on jabber.
commit da42298dc1ad39a5073bb8b221e05ccf8fb5464c
Author: Jeremy C. Reed <jreed at isc.org>
Date: Mon Mar 25 09:36:15 2013 -0500
[master] clean also remove python optimized byte-compiled file
This is ticket http://bind10.isc.org/ticket/2747
It has been failing on distclean for long time
due to file left around.
Newer python's keep under __pycache__ which was already handled.
Reviewed on jabber.
commit 94aade43c190a9dccca5469009b2604efb7c5664
Author: Jeremy C. Reed <jreed at isc.org>
Date: Mon Mar 25 09:34:16 2013 -0500
[master] remove some python optimized byte-compiled files
msgq_run_test.py uses src/lib/python/isc/cc/proto_defs.py which
uses cc_generated version which created some .pyo files:
./src/lib/python/isc/cc/cc_generated/__init__.pyo
./src/lib/python/isc/cc/cc_generated/proto_defs.pyo
which are left over after distclean.
quick review via jabber
-----------------------------------------------------------------------
Summary of changes:
src/bin/msgq/Makefile.am | 1 +
src/lib/python/isc/cc/Makefile.am | 1 +
src/lib/python/isc/cc/cc_generated/Makefile.am | 1 +
3 files changed, 3 insertions(+)
-----------------------------------------------------------------------
diff --git a/src/bin/msgq/Makefile.am b/src/bin/msgq/Makefile.am
index a49b125..185d47a 100644
--- a/src/bin/msgq/Makefile.am
+++ b/src/bin/msgq/Makefile.am
@@ -10,6 +10,7 @@ b10_msgq_DATA = msgq.spec
CLEANFILES = b10-msgq msgq.pyc
CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/msgq_messages.py
CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/msgq_messages.pyc
+CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/msgq_messages.pyo
man_MANS = b10-msgq.8
DISTCLEANFILES = $(man_MANS)
diff --git a/src/lib/python/isc/cc/Makefile.am b/src/lib/python/isc/cc/Makefile.am
index f7c5b00..fe7d747 100644
--- a/src/lib/python/isc/cc/Makefile.am
+++ b/src/lib/python/isc/cc/Makefile.am
@@ -7,6 +7,7 @@ pylogmessagedir = $(pyexecdir)/isc/log_messages/
CLEANFILES = $(PYTHON_LOGMSGPKG_DIR)/work/pycc_messages.py
CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/pycc_messages.pyc
+CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/pycc_messages.pyo
EXTRA_DIST = pycc_messages.mes proto_defs.py
diff --git a/src/lib/python/isc/cc/cc_generated/Makefile.am b/src/lib/python/isc/cc/cc_generated/Makefile.am
index 87e49c1..bc8d478 100644
--- a/src/lib/python/isc/cc/cc_generated/Makefile.am
+++ b/src/lib/python/isc/cc/cc_generated/Makefile.am
@@ -26,6 +26,7 @@ CLEANDIRS = __pycache__
CLEANFILES = proto_defs.py __init__.py
CLEANFILES += proto_defs.pyc __init__.pyc
+CLEANFILES += proto_defs.pyo __init__.pyo
clean-local:
rm -rf $(CLEANDIRS)
More information about the bind10-changes
mailing list