Skip to content
Snippets Groups Projects
Commit c9d3b3c3 authored by Moe Jette's avatar Moe Jette
Browse files

Avoid explicitly loading some libraries for AIX that are not required.

parent ef7760ec
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,7 @@ auth_authd_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS) ...@@ -20,8 +20,7 @@ auth_authd_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
if HAVE_AIX if HAVE_AIX
auth_authd_la_LIBADD = -lauth -le \ auth_authd_la_LIBADD = -lauth -le \
$(top_builddir)/src/common/libcommon.la \ $(top_builddir)/src/common/libcommon.la
$(top_builddir)/src/api/libslurm.la
else else
auth_authd_la_LIBADD = -lauth -le auth_authd_la_LIBADD = -lauth -le
endif endif
......
...@@ -20,8 +20,7 @@ auth_munge_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS) ...@@ -20,8 +20,7 @@ auth_munge_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
if HAVE_AIX if HAVE_AIX
auth_munge_la_LIBADD = -lmunge \ auth_munge_la_LIBADD = -lmunge \
$(top_builddir)/src/common/libcommon.la \ $(top_builddir)/src/common/libcommon.la
$(top_builddir)/src/api/libslurm.la
else else
auth_munge_la_LIBADD = -lmunge auth_munge_la_LIBADD = -lmunge
endif endif
...@@ -14,8 +14,5 @@ auth_none_la_SOURCES = auth_none.c ...@@ -14,8 +14,5 @@ auth_none_la_SOURCES = auth_none.c
auth_none_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS) auth_none_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
if HAVE_AIX if HAVE_AIX
auth_none_la_LIBADD = $(top_builddir)/src/common/libcommon.la \ auth_none_la_LIBADD = $(top_builddir)/src/common/libcommon.la
$(top_builddir)/src/api/libslurm.la
else
auth_none_la_LIBADD = $(top_builddir)/src/api/libslurm.la
endif endif
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