Another mop up commit to add missing changes from the last mop-up.

This commit is contained in:
Shady Ibraheem
2019-12-13 09:48:00 -05:00
parent 95d3c31f21
commit 1dcd276b1e
188 changed files with 7333 additions and 7393 deletions

View File

@@ -1,13 +1,13 @@
################################################################################
## File: Install-MinGW.ps1
## Desc: Install GNU tools for Windows to C:\tools\mingw64
################################################################################
Import-Module -Name ImageHelpers -Force
choco install -y mingw
# Make a copy of mingw32-make.exe to make.exe, which is a more discoverable name
# and so the same command line can be used on Windows as on macOS and Linux
$path = where.exe mingw32-make.exe | Get-Item
Copy-Item -Path $path -Destination (Join-Path $path.Directory 'make.exe')
################################################################################
## File: Install-MinGW.ps1
## Desc: Install GNU tools for Windows to C:\tools\mingw64
################################################################################
Import-Module -Name ImageHelpers -Force
choco install -y mingw
# Make a copy of mingw32-make.exe to make.exe, which is a more discoverable name
# and so the same command line can be used on Windows as on macOS and Linux
$path = where.exe mingw32-make.exe | Get-Item
Copy-Item -Path $path -Destination (Join-Path $path.Directory 'make.exe')