From 59844f21196e22f107ddaa3fc002ab1d5436a438 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Mon, 7 Aug 2006 16:20:33 +0000 Subject: [PATCH] Galen noticed that the soh component wasn't linking against the bproc libraries. Fix that issue. This commit was SVN r11119. --- orte/mca/soh/bproc/Makefile.am | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/orte/mca/soh/bproc/Makefile.am b/orte/mca/soh/bproc/Makefile.am index d284afb2df..fc852b4b9b 100644 --- a/orte/mca/soh/bproc/Makefile.am +++ b/orte/mca/soh/bproc/Makefile.am @@ -38,20 +38,21 @@ else ortedir = $(includedir) endif -host_SOURCES = \ +soh_SOURCES = \ soh_bproc.c \ soh_bproc.h \ soh_bproc_component.c mcacomponentdir = $(libdir)/openmpi mcacomponent_LTLIBRARIES = $(component_install) -mca_soh_bproc_la_SOURCES = $(host_SOURCES) +mca_soh_bproc_la_SOURCES = $(soh_SOURCES) mca_soh_bproc_la_LIBADD = \ + $(soh_bproc_LIBS) \ $(top_ompi_builddir)/orte/liborte.la \ $(top_ompi_builddir)/opal/libopal.la -mca_soh_bproc_la_LDFLAGS = -module -avoid-version +mca_soh_bproc_la_LDFLAGS = -module -avoid-version $(soh_bproc_LDFLAGS) noinst_LTLIBRARIES = $(component_noinst) -libmca_soh_bproc_la_SOURCES = $(host_SOURCES) -libmca_soh_bproc_la_LIBADD = -libmca_soh_bproc_la_LDFLAGS = -module -avoid-version +libmca_soh_bproc_la_SOURCES = $(soh_SOURCES) +libmca_soh_bproc_la_LIBADD = $(soh_bproc_LIBS) +libmca_soh_bproc_la_LDFLAGS = -module -avoid-version $(soh_bproc_LDFLAGS)