From 317a923ea6d1e85300bc8fb4eb82289f02b8501b Mon Sep 17 00:00:00 2001 From: Mark Grondona <mgrondona@llnl.gov> Date: Tue, 29 Apr 2003 20:21:48 +0000 Subject: [PATCH] o link modules with libslurm to allow resolution of symbols in all cases. --- src/plugins/auth/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/auth/Makefile.am b/src/plugins/auth/Makefile.am index db99e7d7d80..88374076d2d 100644 --- a/src/plugins/auth/Makefile.am +++ b/src/plugins/auth/Makefile.am @@ -20,7 +20,7 @@ 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 = +auth_none_la_LIBADD = -lslurm # Authd authentication plugin -- requires libauth auth_authd_la_SOURCES = auth_authd.c @@ -30,6 +30,6 @@ auth_authd_la_LIBADD = -lauth # Munge authentication plugin auth_munge_la_SOURCES = auth_munge.c auth_munge_la_LDFLAGS = $(PLUGIN_FLAGS) -auth_munge_la_LIBADD = -lmunge +auth_munge_la_LIBADD = -lslurm -lmunge -- GitLab