]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix link line for GSSAPI reload test
authorGreg Hudson <ghudson@mit.edu>
Wed, 15 Sep 2021 21:34:18 +0000 (17:34 -0400)
committerGreg Hudson <ghudson@mit.edu>
Wed, 15 Sep 2021 21:34:18 +0000 (17:34 -0400)
LIBS should be included in all link lines.

src/tests/gssapi/Makefile.in

index 4cac8cb2d337bbc658f44eed0afacd2716c30aea..33047c35d56144379ae291e34a0f3013714ed802 100644 (file)
@@ -67,7 +67,7 @@ ccinit: ccinit.o $(KRB5_BASE_DEPLIBS)
 ccrefresh: ccrefresh.o $(KRB5_BASE_DEPLIBS)
        $(CC_LINK) -o ccrefresh ccrefresh.o $(KRB5_BASE_LIBS)
 reload: reload.o
-       $(CC_LINK) -o $@ reload.o $(DL_LIB)
+       $(CC_LINK) -o $@ reload.o $(LIBS) $(DL_LIB)
 t_accname: t_accname.o $(COMMON_DEPS)
        $(CC_LINK) -o $@ t_accname.o $(COMMON_LIBS)
 t_add_cred: t_add_cred.o $(COMMON_DEPS)