aboutsummaryrefslogtreecommitdiff
path: root/src/ccapi
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2018-08-31 13:19:21 -0400
committerGreg Hudson <ghudson@mit.edu>2018-09-05 15:35:28 -0400
commitd281e3640b670afde642993448a27a33abd80cea (patch)
tree5c0ebb9ea324f7e09202d93961b7b3d1f70944fd /src/ccapi
parent39f4af68d436f2e7585eca86823029b337c349a9 (diff)
downloadkrb5-d281e3640b670afde642993448a27a33abd80cea.zip
krb5-d281e3640b670afde642993448a27a33abd80cea.tar.gz
krb5-d281e3640b670afde642993448a27a33abd80cea.tar.bz2
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)
Diffstat (limited to 'src/ccapi')
-rw-r--r--src/ccapi/test/Makefile.in2
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)$@.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.