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

o Link against built libslurm, not installed one.

parent e1bc40c3
No related branches found
No related tags found
No related merge requests found
......@@ -20,16 +20,16 @@ pkglib_LTLIBRARIES = auth_none.la $(AUTHD) $(MUNGE)
# Null authentication plugin.
auth_none_la_SOURCES = auth_none.c
auth_none_la_LDFLAGS = $(PLUGIN_FLAGS)
auth_none_la_LIBADD = -lslurm
auth_none_la_LIBADD = $(top_builddir)/src/api/libslurm.la
# Authd authentication plugin -- requires libauth
auth_authd_la_SOURCES = auth_authd.c
auth_authd_la_LDFLAGS = $(PLUGIN_FLAGS)
auth_authd_la_LIBADD = -lauth
auth_authd_la_LIBADD = $(top_builddir)/src/api/libslurm.la -lauth
# Munge authentication plugin
auth_munge_la_SOURCES = auth_munge.c
auth_munge_la_LDFLAGS = $(PLUGIN_FLAGS)
auth_munge_la_LIBADD = -lslurm -lmunge
auth_munge_la_LIBADD = $(top_builddir)/src/api/libslurm.la -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