Skip to content

Commit bf8ace3

Browse files
authored
libsodium: don't update config.sub, congig.guess from git.savannah.gnu.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
1 parent 956650e commit bf8ace3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

depends/packages/libsodium.mk

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ $(package)_dependencies=
77
$(package)_config_opts=
88

99
define $(package)_set_vars
10-
$(package)_build_env=DO_NOT_UPDATE_CONFIG_SCRIPTS=1
1110
ifeq ($(build_os),darwin)
1211
$(package)_build_env+=MACOSX_DEPLOYMENT_TARGET="$(OSX_MIN_VERSION)"
1312
$(package)_cc=clang
@@ -16,7 +15,7 @@ define $(package)_set_vars
1615
endef
1716

1817
define $(package)_preprocess_cmds
19-
cd $($(package)_build_subdir); ./autogen.sh
18+
cd $($(package)_build_subdir); DO_NOT_UPDATE_CONFIG_SCRIPTS=1 ./autogen.sh
2019
endef
2120

2221
define $(package)_config_cmds

0 commit comments

Comments
 (0)