You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
773 B
19 lines
773 B
echo off
|
|
|
|
call C:\tools\cygwin\cygwinsetup.exe -q -P autoconf,automake,libtool,make,pkg-config
|
|
|
|
REM Create wrapper batch files for Cygwin tools in a directory that will be in PATH
|
|
REM uncomment this for first-run only
|
|
REM call mkdir C:\cygwin-wrappers
|
|
|
|
REM Create autoconf.bat wrapper
|
|
call echo @echo off > C:\cygwin-wrappers\autoconf.bat
|
|
call echo C:\tools\cygwin\bin\bash.exe -l -c "autoconf %%*" >> C:\cygwin-wrappers\autoconf.bat
|
|
|
|
REM Add other wrappers if needed for other Cygwin tools
|
|
call echo @echo off > C:\cygwin-wrappers\automake.bat
|
|
call echo C:\tools\cygwin\bin\bash.exe -l -c "automake %%*" >> C:\cygwin-wrappers\automake.bat
|
|
|
|
REM Add the wrappers directory to PATH
|
|
call echo C:\cygwin-wrappers>>"%GITHUB_PATH%"
|
|
call echo C:\tools\cygwin\bin>>"%GITHUB_PATH%"
|