From: Greg Hudson Date: Fri, 31 Aug 2018 17:19:21 +0000 (-0400) Subject: Fix name of .pdb file in ccapi/test/Makefile.in X-Git-Tag: krb5-1.17-beta1~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d281e3640b670afde642993448a27a33abd80cea;p=thirdparty%2Fkrb5.git 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) --- diff --git a/src/ccapi/test/Makefile.in b/src/ccapi/test/Makefile.in index 85fe172354..23befe8ea5 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)$@.exe -Fd$(OBJDIR)$(S)$@.obj $@.c $(OBJECTS) $(LIBS) + $(CC) $(ALL_CFLAGS) -Fe$(TESTDIR)$(S)$@.exe -Fd$(OBJDIR)$(S)$@.pdb $@.c $(OBJECTS) $(LIBS) # Clean .obj from .: $(RM) $@.$(OBJEXT) ##-- These two rules build each element of the list.