File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ case "$1" in
20
20
;;
21
21
esac
22
22
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)
23
31
24
32
case " ${skip_submodules} " in
25
33
0|no|false|" " )
@@ -28,7 +36,7 @@ case "${skip_submodules}" in
28
36
autogen=$(find . -name autogen.sh)
29
37
if [ -x "$autogen" ]; then
30
38
cd $(dirname "$autogen")
31
- ./autogen.sh
39
+ DO_NOT_UPDATE_CONFIG_SCRIPTS=1 ./autogen.sh
32
40
fi
33
41
'
34
42
;;
You can’t perform that action at this time.
0 commit comments