[svn] commit: r3008 - in /trunk/src: bin/bind10/ bin/bindctl/ bin/cfgmgr/ bin/cmdctl/ bin/loadzone/ bin/msgq/ bin/xfrin/ bin/xfrout/ bin/zonemgr/ lib/dns/python/ lib/python/isc/cc/ lib/python/isc/config/ lib/python/isc/log/ lib/python/isc/notify/

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Sep 23 13:35:16 UTC 2010


Author: jinmei
Date: Thu Sep 23 13:35:15 2010
New Revision: 3008

Log:
make sure "." is listed before tests in SUBDIRS to ensure things to be tested are ready when doing tests.  specifically, the immediate 'make check' after "configure" would fail without these changes.

this may not be super minor, but I think it's still quite trivial and isn't worth spending others's time for review.  so I'll skip review.  If I broke something buildbot will tell it to us.

Modified:
    trunk/src/bin/bind10/Makefile.am
    trunk/src/bin/bindctl/Makefile.am
    trunk/src/bin/cfgmgr/Makefile.am
    trunk/src/bin/cmdctl/Makefile.am
    trunk/src/bin/loadzone/Makefile.am
    trunk/src/bin/msgq/Makefile.am
    trunk/src/bin/xfrin/Makefile.am
    trunk/src/bin/xfrout/Makefile.am
    trunk/src/bin/zonemgr/Makefile.am
    trunk/src/lib/dns/python/Makefile.am
    trunk/src/lib/python/isc/cc/Makefile.am
    trunk/src/lib/python/isc/config/Makefile.am
    trunk/src/lib/python/isc/log/Makefile.am
    trunk/src/lib/python/isc/notify/Makefile.am

Modified: trunk/src/bin/bind10/Makefile.am
==============================================================================
--- trunk/src/bin/bind10/Makefile.am (original)
+++ trunk/src/bin/bind10/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 sbin_SCRIPTS = bind10
 CLEANFILES = bind10 bind10.pyc

Modified: trunk/src/bin/bindctl/Makefile.am
==============================================================================
--- trunk/src/bin/bindctl/Makefile.am (original)
+++ trunk/src/bin/bindctl/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 bin_SCRIPTS = bindctl
 man_MANS = bindctl.1

Modified: trunk/src/bin/cfgmgr/Makefile.am
==============================================================================
--- trunk/src/bin/cfgmgr/Makefile.am (original)
+++ trunk/src/bin/cfgmgr/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
 

Modified: trunk/src/bin/cmdctl/Makefile.am
==============================================================================
--- trunk/src/bin/cmdctl/Makefile.am (original)
+++ trunk/src/bin/cmdctl/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
 

Modified: trunk/src/bin/loadzone/Makefile.am
==============================================================================
--- trunk/src/bin/loadzone/Makefile.am (original)
+++ trunk/src/bin/loadzone/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,5 +1,4 @@
-SUBDIRS = tests/correct
-SUBDIRS += tests/error
+SUBDIRS = . tests/correct tests/error
 bin_SCRIPTS = b10-loadzone
 
 CLEANFILES = b10-loadzone

Modified: trunk/src/bin/msgq/Makefile.am
==============================================================================
--- trunk/src/bin/msgq/Makefile.am (original)
+++ trunk/src/bin/msgq/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
  

Modified: trunk/src/bin/xfrin/Makefile.am
==============================================================================
--- trunk/src/bin/xfrin/Makefile.am (original)
+++ trunk/src/bin/xfrin/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
 

Modified: trunk/src/bin/xfrout/Makefile.am
==============================================================================
--- trunk/src/bin/xfrout/Makefile.am (original)
+++ trunk/src/bin/xfrout/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
 

Modified: trunk/src/bin/zonemgr/Makefile.am
==============================================================================
--- trunk/src/bin/zonemgr/Makefile.am (original)
+++ trunk/src/bin/zonemgr/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 pkglibexecdir = $(libexecdir)/@PACKAGE@
 

Modified: trunk/src/lib/dns/python/Makefile.am
==============================================================================
--- trunk/src/lib/dns/python/Makefile.am (original)
+++ trunk/src/lib/dns/python/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
 AM_CXXFLAGS = $(B10_CXXFLAGS)

Modified: trunk/src/lib/python/isc/cc/Makefile.am
==============================================================================
--- trunk/src/lib/python/isc/cc/Makefile.am (original)
+++ trunk/src/lib/python/isc/cc/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 python_PYTHON =	__init__.py data.py session.py message.py
 

Modified: trunk/src/lib/python/isc/config/Makefile.am
==============================================================================
--- trunk/src/lib/python/isc/config/Makefile.am (original)
+++ trunk/src/lib/python/isc/config/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 python_PYTHON = __init__.py ccsession.py cfgmgr.py config_data.py module_spec.py
 

Modified: trunk/src/lib/python/isc/log/Makefile.am
==============================================================================
--- trunk/src/lib/python/isc/log/Makefile.am (original)
+++ trunk/src/lib/python/isc/log/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 python_PYTHON = __init__.py log.py
 

Modified: trunk/src/lib/python/isc/notify/Makefile.am
==============================================================================
--- trunk/src/lib/python/isc/notify/Makefile.am (original)
+++ trunk/src/lib/python/isc/notify/Makefile.am Thu Sep 23 13:35:15 2010
@@ -1,4 +1,4 @@
-SUBDIRS = tests
+SUBDIRS = . tests
 
 python_PYTHON = __init__.py notify_out.py
 




More information about the bind10-changes mailing list