Skip to content

Commit

Permalink
libsodium: don't update config.sub, congig.guess from git.savannah.gn…
Browse files Browse the repository at this point in the history
…u.org (#635)

As of August 30, 2024, `git.savannah.gnu.org` returned a
502 error when trying to download `config.guess` and `config.sub`.
For example, attempting to download [this link](https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD)
returned a 502 error. As a result, all scripts, workflows, etc.,
that relied on getting fresh versions of `config.{sub,guess}`
from `git.savannah.gnu.org` are failing. To prevent this, we
disabled updating to the fresh versions of these scripts.

- DeckerSU/KomodoOcean@4a29828
- #633
  • Loading branch information
DeckerSU authored Oct 5, 2024
1 parent 956650e commit bf8ace3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions depends/packages/libsodium.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ $(package)_dependencies=
$(package)_config_opts=

define $(package)_set_vars
$(package)_build_env=DO_NOT_UPDATE_CONFIG_SCRIPTS=1
ifeq ($(build_os),darwin)
$(package)_build_env+=MACOSX_DEPLOYMENT_TARGET="$(OSX_MIN_VERSION)"
$(package)_cc=clang
Expand All @@ -16,7 +15,7 @@ define $(package)_set_vars
endef

define $(package)_preprocess_cmds
cd $($(package)_build_subdir); ./autogen.sh
cd $($(package)_build_subdir); DO_NOT_UPDATE_CONFIG_SCRIPTS=1 ./autogen.sh
endef

define $(package)_config_cmds
Expand Down

0 comments on commit bf8ace3

Please sign in to comment.