Hi all,

Do we need to install header files in test directories? If not, the attached patch stops them from being installed. Please review and apply.

Thanks.

~sanjaya

--
http://sanjaya.8k.com
Index: test/unit/xml/om/Makefile.am
===================================================================
--- test/unit/xml/om/Makefile.am        (revision 379052)
+++ test/unit/xml/om/Makefile.am        (working copy)
@@ -7,7 +7,7 @@
 libtest_om_la_SOURCES = om_test.c om_node_test.c
 
                         
-include_HEADERS=$(top_builddir)/test/unit/xml/om/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/xml/om/*.h
 
 INCLUDES = -I$(top_builddir)/include \
             -I${CUTEST_HOME}/include \
Index: test/unit/core/deployment/Makefile.am
===================================================================
--- test/unit/core/deployment/Makefile.am       (revision 379052)
+++ test/unit/core/deployment/Makefile.am       (working copy)
@@ -7,7 +7,7 @@
                                 test_phases_info.c \
                                 test_dep_engine.c
 
-include_HEADERS=$(top_builddir)/test/unit/core/deployment/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/core/deployment/*.h
 
 
 INCLUDES = -I$(top_builddir)/include \
Index: test/unit/core/phaseresolver/Makefile.am
===================================================================
--- test/unit/core/phaseresolver/Makefile.am    (revision 379052)
+++ test/unit/core/phaseresolver/Makefile.am    (working copy)
@@ -7,7 +7,7 @@
                                     test_resolver.c \
                                     test_phase_holder.c
 
-include_HEADERS=$(top_builddir)/test/unit/core/phaseresolver/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/core/phaseresolver/*.h
 
 INCLUDES = -I$(top_builddir)/include \
             -I$(top_builddir)/modules/util \
Index: test/unit/core/description/Makefile.am
===================================================================
--- test/unit/core/description/Makefile.am      (revision 379052)
+++ test/unit/core/description/Makefile.am      (working copy)
@@ -9,7 +9,7 @@
                                     test_flow.c \
                                     test_handler_desc.c
 
-include_HEADERS=$(top_builddir)/test/unit/core/description/*.h 
$(top_builddir)/test/unit/core/phaseresolver/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/core/description/*.h 
$(top_builddir)/test/unit/core/phaseresolver/*.h
 
 INCLUDES = -I$(top_builddir)/include \
             -I$(top_builddir)/modules/util \
Index: test/unit/core/context/Makefile.am
===================================================================
--- test/unit/core/context/Makefile.am  (revision 379052)
+++ test/unit/core/context/Makefile.am  (working copy)
@@ -4,7 +4,7 @@
 prglib_LTLIBRARIES = libtest_context.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libtest_context_la_SOURCES = context_test.c
-include_HEADERS=$(top_builddir)/test/unit/core/context/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/core/context/*.h
 
 
 INCLUDES = -I$(top_builddir)/include \
Index: test/unit/core/engine/Makefile.am
===================================================================
--- test/unit/core/engine/Makefile.am   (revision 379052)
+++ test/unit/core/engine/Makefile.am   (working copy)
@@ -4,7 +4,7 @@
 prglib_LTLIBRARIES = libtest_engine.la
 AM_CPPFLAGS = $(CPPFLAGS)
 libtest_engine_la_SOURCES = engine_test.c test_conf.c
-include_HEADERS=$(top_builddir)/test/unit/core/engine/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/core/engine/*.h
 
 INCLUDES = -I$(top_builddir)/include \
             -I$(top_builddir)/modules/util \
Index: test/unit/wsdl/Makefile.am
===================================================================
--- test/unit/wsdl/Makefile.am  (revision 379052)
+++ test/unit/wsdl/Makefile.am  (working copy)
@@ -6,7 +6,7 @@
 
 libtest_wsdl_la_SOURCES = wsdl_test.c test_wsdl_component.c
 
-include_HEADERS=$(top_builddir)/test/unit/wsdl/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/wsdl/*.h
 
 INCLUDES = -I$(top_builddir)/include \
             -I${CUTEST_HOME}/include \
Index: test/unit/util/Makefile.am
===================================================================
--- test/unit/util/Makefile.am  (revision 379052)
+++ test/unit/util/Makefile.am  (working copy)
@@ -13,7 +13,7 @@
                             util_dir_handler_test.c \
                             util_class_loader_test.c
 
-include_HEADERS=$(top_builddir)/test/unit/util/*.h
+noinst_HEADERS=$(top_builddir)/test/unit/util/*.h
 
 INCLUDES = -I$(top_builddir)/include \
             -I${CUTEST_HOME}/include \

Reply via email to