Skip to content
Snippets Groups Projects
Commit 317a923e authored by Mark Grondona's avatar Mark Grondona
Browse files

o link modules with libslurm to allow resolution of symbols in all cases.

parent 333b0b93
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ pkglib_LTLIBRARIES = auth_none.la $(AUTHD) $(MUNGE) ...@@ -20,7 +20,7 @@ pkglib_LTLIBRARIES = auth_none.la $(AUTHD) $(MUNGE)
# Null authentication plugin. # Null authentication plugin.
auth_none_la_SOURCES = auth_none.c auth_none_la_SOURCES = auth_none.c
auth_none_la_LDFLAGS = $(PLUGIN_FLAGS) auth_none_la_LDFLAGS = $(PLUGIN_FLAGS)
auth_none_la_LIBADD = auth_none_la_LIBADD = -lslurm
# Authd authentication plugin -- requires libauth # Authd authentication plugin -- requires libauth
auth_authd_la_SOURCES = auth_authd.c auth_authd_la_SOURCES = auth_authd.c
...@@ -30,6 +30,6 @@ auth_authd_la_LIBADD = -lauth ...@@ -30,6 +30,6 @@ auth_authd_la_LIBADD = -lauth
# Munge authentication plugin # Munge authentication plugin
auth_munge_la_SOURCES = auth_munge.c auth_munge_la_SOURCES = auth_munge.c
auth_munge_la_LDFLAGS = $(PLUGIN_FLAGS) auth_munge_la_LDFLAGS = $(PLUGIN_FLAGS)
auth_munge_la_LIBADD = -lmunge auth_munge_la_LIBADD = -lslurm -lmunge
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment