diff options
author | Nickolai Zeldovich <nickolai@csail.mit.edu> | 2013-03-03 01:38:22 -0500 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2013-03-03 01:38:22 -0500 |
commit | 055d1ffa81d0730e92aa3f1ed5045cd805c74957 (patch) | |
tree | 62ae18396c96edfbb11bc494d07141b1066d0939 /src/tests | |
parent | d77d40b0e2d3f60a49df0131d96cc05d80ca6107 (diff) | |
download | krb5-055d1ffa81d0730e92aa3f1ed5045cd805c74957.tar.gz krb5-055d1ffa81d0730e92aa3f1ed5045cd805c74957.tar.xz krb5-055d1ffa81d0730e92aa3f1ed5045cd805c74957.zip |
Fix dependencies in tests/gssapi
Use $(COMMON_DEPS) instead of $(COMMON_DEPLIBS) for dependencies; the
latter appears to be a typo. Fixes build when using "make -j".
ticket: 7587 (new)
target_version: 1.11.2
tags: pullup
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/gssapi/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/gssapi/Makefile.in b/src/tests/gssapi/Makefile.in index 56202345a..6a5870b01 100644 --- a/src/tests/gssapi/Makefile.in +++ b/src/tests/gssapi/Makefile.in @@ -45,11 +45,11 @@ t_accname: t_accname.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_accname.o $(COMMON_LIBS) t_ccselect: t_ccselect.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_ccselect.o $(COMMON_LIBS) -t_credstore: t_credstore.o $(COMMON_DEPLIBS) +t_credstore: t_credstore.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_credstore.o $(COMMON_LIBS) t_export_cred: t_export_cred.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_export_cred.o $(COMMON_LIBS) -t_export_name: t_export_name.o $(COMMON_DEPLIBS) +t_export_name: t_export_name.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_export_name.o $(COMMON_LIBS) t_gssexts: t_gssexts.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_gssexts.o $(COMMON_LIBS) @@ -67,7 +67,7 @@ t_s4u: t_s4u.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_s4u.o $(COMMON_LIBS) t_s4u2proxy_krb5: t_s4u2proxy_krb5.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_s4u2proxy_krb5.o $(COMMON_LIBS) -t_saslname: t_saslname.o $(COMMON_DEPLIBS) +t_saslname: t_saslname.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_saslname.o $(COMMON_LIBS) t_spnego: t_spnego.o $(COMMON_DEPS) $(CC_LINK) -o $@ t_spnego.o $(COMMON_LIBS) |