krb5 commit: Fix name of .pdb file in ccapi/test/Makefile.in
Greg Hudson <[email protected]>
| Newsgroups | gmane.comp.encryption.kerberos.cvs |
|---|---|
| Message-ID | <[email protected]> |
https://github.com/krb5/krb5/commit/d281e3640b670afde642993448a27a33abd80cea commit d281e3640b670afde642993448a27a33abd80cea Author: Greg Hudson <[email protected]> Date: Fri Aug 31 13:19:21 2018 -0400 Fix name of .pdb file in ccapi/test/Makefile.in The -Fd cl option specifies the location of the program database filename, which should have the extension .pdb. Using a .obj extension causes a build failure with MSVC version 14.15.26726. ticket: 8732 (new) src/ccapi/test/Makefile.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/ccapi/test/Makefile.in b/src/ccapi/test/Makefile.in index 85fe172..23befe8 100644 --- a/src/ccapi/test/Makefile.in +++ b/src/ccapi/test/Makefile.in @@ -151,7 +151,7 @@ build-tests: $(TEST_NAMES) $(TEST_NAMES): @echo DBG: $@ - $(CC) $(ALL_CFLAGS) -Fe$(TESTDIR)$(S)[email protected] -Fd$(OBJDIR)$(S)[email protected] [email protected] $(OBJECTS) $(LIBS) + $(CC) $(ALL_CFLAGS) -Fe$(TESTDIR)$(S)[email protected] -Fd$(OBJDIR)$(S)[email protected] [email protected] $(OBJECTS) $(LIBS) # Clean .obj from .: $(RM) $@.$(OBJEXT) ##-- These two rules build each element of the list.