[CE SDK U12] Define ntLib in winntmdl.mki Line 543ff causes fatal error LNK1181

Hello,

I have "NTTOOLS=C:\PROGRA~2\MIB055~1\2017\PROFES~1\VC\Tools\MSVC\1416~1.270\" with trailing slash. But the '{}' will cut the last '\' and I got Link error "fatal error LNK1181: Eingabedatei "C:\PROGRA~2\MIB055~1\2017\PROFES~1\VC\Tools\MSVC\1416~1.270lib\x64\msvcrt.lib""

%if defined (BUILD_USING_VS2017)
   %if $(TARGET_PROCESSOR_ARCHITECTURE)=="x86"
      ntLib = ${ntTools}lib/x86/
      AsmCmd = ${nttools}bin\HostX86\x86\ml
   %else
      ntLib = ${ntTools}lib/x64/
   %endif
%else
   ntLib = ${ntTools}lib${slashAmd64}/
%endif

After  "correcting" the  winntmdl.mki with missing '/' everything seems to be ok.

%if defined (BUILD_USING_VS2017)
   %if $(TARGET_PROCESSOR_ARCHITECTURE)=="x86"
      ntLib = ${ntTools}/lib/x86/
      AsmCmd = ${nttools}/bin\HostX86\x86\ml
   %else
      ntLib = ${ntTools}/lib/x64/
   %endif
%else
   ntLib = ${ntTools}/lib${slashAmd64}/
%endif

Is this the right way to correct this, or did I miss something?

Thanks a Lot

Volker