Skip to content

Commit

Permalink
MSYS2 debugger/setup command: Install only prefix specific packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
pal1000 committed May 14, 2024
1 parent fc69045 commit 209c964
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildscript/debug/msysconsole.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
@IF /I "%msyscmd%"=="shell" GOTO selectshell
@IF /I "%msyscmd%"=="clearcache" call "%devroot%\%projectname%\buildscript\modules\msyspkgclean.cmd"
@IF /I "%msyscmd%"=="cleancache" call "%devroot%\%projectname%\buildscript\modules\msyspkgclean.cmd"
@IF /I "%msyscmd%"=="setup" IF %shell% EQU 1 %runmsys% pacman -S flex bison patch tar mingw-w64-i686-%mingwpkglst% mingw-w64-ucrt-x86_64-%mingwpkglst% --needed
@IF /I "%msyscmd%"=="setup" IF %shell% GTR 1 %runmsys% pacman -S flex bison patch tar ${MINGW_PACKAGE_PREFIX}-%mingwpkglst% --needed
@IF /I "%msyscmd%"=="setup" IF %shell% EQU 1 %runmsys% pacman -S flex bison patch tar --needed
@IF /I "%msyscmd%"=="setup" IF %shell% GTR 1 %runmsys% pacman -S ${MINGW_PACKAGE_PREFIX}-%mingwpkglst% --needed
@IF /I NOT "%msyscmd%"=="clearcache" IF /I NOT "%msyscmd%"=="cleancache" IF /I NOT "%msyscmd%"=="setup" %runmsys% %msyscmd%
@echo.
@GOTO command

0 comments on commit 209c964

Please sign in to comment.