X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=win32%2Finstall.cmd;h=b06cb9ffc93da152918df223e8768db1d7535aae;hb=188a17803798f8d78b1c02c3b68976056bce33d9;hp=70a53f5ab1168046d25d583f8aab6e98c84f679d;hpb=9c1f4103a668cfcf7e1023f7d25746f3d41f48b0;p=libfirm diff --git a/win32/install.cmd b/win32/install.cmd index 70a53f5ab..b06cb9ffc 100644 --- a/win32/install.cmd +++ b/win32/install.cmd @@ -11,6 +11,7 @@ rem set SRC=%1 set DST=%2 +set CP=xcopy /D/Y/Q if "%1" == "" goto usage if "%2" == "" goto usage @@ -19,7 +20,7 @@ echo Installing Header files to %DST% ... if not exist %DST% mkdir %DST% for /F "eol=# tokens=1,2" %%i in (header.list) do if not exist "%DST%\%%j" mkdir %DST%\%%j -for /F "eol=# tokens=1,2" %%i in (header.list) do echo %%i && copy /Y %SRC%\%%i %DST%\%%j >NUL +for /F "eol=# tokens=1,2" %%i in (header.list) do %CP% %SRC%\%%i %DST%\%%j >NUL echo done. goto end