From 233451505a7509fd5052b098b71ae873e826b15b Mon Sep 17 00:00:00 2001 From: Axel Amigo Arnold Date: Fri, 1 Oct 2021 17:54:24 +0200 Subject: [PATCH 1/2] Enabled unified mode It will be the default behavior for Chef Infra Client 18.x --- resources/get.rb | 3 +++ resources/msys2_package.rb | 3 +++ resources/tdm_gcc.rb | 3 +++ 3 files changed, 9 insertions(+) diff --git a/resources/get.rb b/resources/get.rb index a102b0e..7236617 100644 --- a/resources/get.rb +++ b/resources/get.rb @@ -17,6 +17,9 @@ # limitations under the License. # +# enable unified mode +unified_mode true + # Installs the core msys utilities needed for mingw/git/any other posix # based toolchain at a desired location using mingw-get.exe. diff --git a/resources/msys2_package.rb b/resources/msys2_package.rb index f4a5c0b..3d61d81 100644 --- a/resources/msys2_package.rb +++ b/resources/msys2_package.rb @@ -17,6 +17,9 @@ # limitations under the License. # +# enable unified mode +unified_mode true + # Installs msys2 base system and installs/upgrades packages within in. # # Where's the version flag? Where's idempotence you say? Well f*** you diff --git a/resources/tdm_gcc.rb b/resources/tdm_gcc.rb index c30a70c..d0ad62b 100644 --- a/resources/tdm_gcc.rb +++ b/resources/tdm_gcc.rb @@ -17,6 +17,9 @@ # limitations under the License. # +# enable unified mode +unified_mode true + # Installs a gcc based C/C++ compiler and runtime from TDM GCC. property :flavor, Symbol, is: [:sjlj_32, :seh_sjlj_64], default: :seh_sjlj_64 From bc5774bb09ff4f3940e474d6912aae7fdbdd72bc Mon Sep 17 00:00:00 2001 From: Axel Amigo Arnold Date: Fri, 1 Oct 2021 17:54:54 +0200 Subject: [PATCH 2/2] Changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 098516a..b734819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ This file is used to list changes made in each version of the mingw cookbook. ## Unreleased +- Enabled unified mode + ## 2.1.3 - *2021-08-31* - Standardise files with files in sous-chefs/repo-management