Skip to content

Commit c34ba88

Browse files
committed
monitoring lib: fix some Makefile.am macros
* Use the proper lib prefix name * Use the proper extra LDFLAGS Signed-off-by: Jeff Squyres <[email protected]>
1 parent 626167f commit c34ba88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/monitoring/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
if PROJECT_OMPI
2020
noinst_PROGRAMS = monitoring_test
2121
monitoring_test_SOURCES = monitoring_test.c
22-
monitoring_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
22+
monitoring_test_LDFLAGS = $(OMPI_PKG_CONFIG_LDFLAGS)
2323
monitoring_test_LDADD = \
2424
$(top_builddir)/ompi/lib@[email protected] \
25-
$(top_builddir)/opal/libopen-pal.la
25+
$(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
2626

2727
if MCA_BUILD_ompi_pml_monitoring_DSO
2828
lib_LTLIBRARIES = ompi_monitoring_prof.la
@@ -31,7 +31,7 @@ if MCA_BUILD_ompi_pml_monitoring_DSO
3131
-module -avoid-version -shared $(WRAPPER_EXTRA_LDFLAGS)
3232
ompi_monitoring_prof_la_LIBADD = \
3333
$(top_builddir)/ompi/lib@[email protected] \
34-
$(top_builddir)/opal/libopen-pal.la
34+
$(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
3535
endif # MCA_BUILD_ompi_pml_monitoring_DSO
3636

3737
endif # PROJECT_OMPI

0 commit comments

Comments
 (0)