File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ case "$1" in
2020 ;;
2121esac
2222
23+ # NB: the DO_NOT_UPDATE_CONFIG_SCRIPTS variable is here to inform libsodium not
24+ # to download a fresh config.sub and config.guess from git.savannah.gnu.org
25+ # (which is sometimes offline).
26+ #
27+ # This variable was how you disable the update in libsodium up to version
28+ # 1.0.18; but in master they have changed this, so on the next libsodium
29+ # submodule bump we'll want to change the code here to the new interface
30+ # (running `autogen.sh -b` in the libsodium directory)
2331
2432case " ${skip_submodules} " in
2533 0|no|false|" " )
@@ -28,7 +36,7 @@ case "${skip_submodules}" in
2836 autogen=$(find . -name autogen.sh)
2937 if [ -x "$autogen" ]; then
3038 cd $(dirname "$autogen")
31- ./autogen.sh
39+ DO_NOT_UPDATE_CONFIG_SCRIPTS=1 ./autogen.sh
3240 fi
3341 '
3442 ;;
You can’t perform that action at this time.
0 commit comments