Skip to content

Commit c98c860

Browse files
authored
Merge pull request #10192 from bwbarrett/bugfix/netlink-reachable-ldflags
reachable/netlink: Fix missing LDFLAGS
2 parents 6abbc3e + 27f98b0 commit c98c860

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

opal/mca/reachable/netlink/Makefile.am

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2016 Research Organization for Information Science
44
# and Technology (RIST). All rights reserved.
55
# Copyright (c) 2017 IBM Corporation. All rights reserved.
6+
# Copyright (c) 2022 Amazon.com, Inc. or its affiliates. All Rights reserved.
67
# $COPYRIGHT$
78
#
89
# Additional copyrights may follow
@@ -37,11 +38,11 @@ AM_CPPFLAGS = \
3738
mcacomponentdir = $(opallibdir)
3839
mcacomponent_LTLIBRARIES = $(component_install)
3940
mca_reachable_netlink_la_SOURCES = $(sources)
40-
mca_reachable_netlink_la_LDFLAGS = -module -avoid-version
41+
mca_reachable_netlink_la_LDFLAGS = -module -avoid-version $(reachable_netlink_LDFLAGS)
4142
mca_reachable_netlink_la_LIBADD = $(top_builddir)/opal/lib@[email protected] \
4243
$(reachable_netlink_LIBS)
4344

4445
noinst_LTLIBRARIES = $(component_noinst)
4546
libmca_reachable_netlink_la_SOURCES =$(sources)
46-
libmca_reachable_netlink_la_LDFLAGS = -module -avoid-version
47+
libmca_reachable_netlink_la_LDFLAGS = -module -avoid-version $(reachable_netlink_LDFLAGS)
4748
libmca_reachable_netlink_la_LIBADD = $(reachable_netlink_LIBS)

0 commit comments

Comments
 (0)