https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2417e2cdfcd0a2a1d7a1889acb649a8e7bffddfa authored by ffxbld on 07 April 2016, 23:48:37 UTC
Added FIREFOX_45_0_2_RELEASE FIREFOX_45_0_2_BUILD1 tag(s) for changeset e35da3da61cb. DONTBUILD CLOSED TREE a=release
Tip revision: 2417e2c
copy_compiler_dll.bat
@echo off
set _arch=%1
set _arch=%_arch:Win32=x86%
copy %2"\Redist\D3D\"%_arch%"\d3dcompiler_47.dll" %3 > NUL
:: This is equivalent to `touch', see:
:: https://technet.microsoft.com/en-us/library/bb490886.aspx
:: This avoids rerunning because this batch file is also copied to the gen dir,
:: so it's timestamp would otherwise be newer than the dll.
copy /b %3\d3dcompiler_47.dll+,, %3\d3dcompiler_47.dll > NUL
back to top