From: Lawrence S. <ljs...@us...> - 2022-08-18 01:06:11
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 807ea13be5d8f5a43b3b328c1f50505be4f482a8 (commit) from 9e6c35a3fe8be09619fd02d9feb0eee64cf44d23 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 807ea13be5d8f5a43b3b328c1f50505be4f482a8 Author: Lawrence Sebald <ljs...@us...> Date: Wed Aug 17 21:05:32 2022 -0400 Remove '-J' flag from cURL command in dc-chain. ----------------------------------------------------------------------- Summary of changes: utils/dc-chain/scripts/init.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/dc-chain/scripts/init.mk b/utils/dc-chain/scripts/init.mk index ad30e5c..8063bf9 100644 --- a/utils/dc-chain/scripts/init.mk +++ b/utils/dc-chain/scripts/init.mk @@ -38,7 +38,7 @@ endif # package. Copy the original file somewhere outside your MinGW/MSYS installation # and replace it with the provided patched version. # -# The patched version is coming from the C::B Advanced package. The major fix +# The patched version is coming from the C::B Advanced package. The major fix # applied is the heap size increase, from 256 MB to more than 1024 MB. # # After building the whole toolchain, please remove the patched version and move @@ -47,7 +47,7 @@ endif ifdef MINGW msys_patched_checksum = 2e627b60938fb8894b3536fc8fe0587a5477f570 msys_checksum = $(shell sha1sum /bin/msys-1.0.dll | cut -c-40) - ifneq ($(msys_checksum),$(msys_patched_checksum)) + ifneq ($(msys_checksum),$(msys_patched_checksum)) $(warning Please consider temporarily patching '/bin/msys-1.0.dll') endif endif @@ -71,7 +71,7 @@ ifdef MACOS SH_CC_FOR_TARGET += $(macos_extra_args) SH_CXX_FOR_TARGET += $(macos_extra_args) macos_gcc_configure_args = --with-sysroot --with-native-system-header=/usr/include - macos_gdb_configure_args = --with-sysroot=$(sdkroot) + macos_gdb_configure_args = --with-sysroot=$(sdkroot) endif endif @@ -108,7 +108,7 @@ endif # Web downloaders command-lines wget_cmd=wget -c -curl_cmd=curl -C - -O -J +curl_cmd=curl -C - -O # Determine if we want to apply fixup sh4 newlib do_auto_fixup_sh4_newlib := 1 hooks/post-receive -- A pseudo Operating System for the Dreamcast. |