Compare commits

...

5 Commits

Author SHA1 Message Date
Daniel Stenberg
ec99918e4d
fixup try odd work-around 2025-02-28 23:21:52 +01:00
Daniel Stenberg
6d6841c5db
fixup simple subst test instead 2025-02-28 23:00:33 +01:00
Daniel Stenberg
678f65590f
fixup try it a little different 2025-02-28 13:47:32 +01:00
Daniel Stenberg
43d80a773c
fixup junk 2025-02-28 13:03:43 +01:00
Daniel Stenberg
6dd72cfc8e
winbuild: use $(strip) to trim off spaces
strip: https://learn.microsoft.com/en-us/cpp/build/reference/nmake-function-strip?view=msvc-170

Trim off spaces when getting the list of objects in an attempt to avoid
reaching "too long line".

Ref: #16508
2025-02-28 13:01:01 +01:00

View File

@ -57,12 +57,18 @@ CFGSET=true
!ENDIF !ENDIF
DOUBLESPACE=$(subst ',,' ')
SINGLESPACE=$(subst ',,' ')
!INCLUDE "../lib/Makefile.inc" !INCLUDE "../lib/Makefile.inc"
LIBCURL_OBJS=$(CSOURCES:.c=.obj) SRC=$(subst $(DOUBLESPACE),$(SINGLESPACE),$(CSOURCES)))
LIBCURL_OBJS=$(SRC:.c=.obj)
!INCLUDE "../src/Makefile.inc" !INCLUDE "../src/Makefile.inc"
CURL_OBJS=$(CURL_CFILES:.c=.obj) CSRC=$(subst $(DOUBLESPACE),$(SINGLESPACE),$(CURL_CFILES)))
CSRC=$(subst , ,$(CURL_CFILES))
CURL_OBJS=$(CSRC:.c=.obj)
# backwards compatible check for USE_SSPI # backwards compatible check for USE_SSPI
!IFDEF USE_SSPI !IFDEF USE_SSPI