]> Savannah Git Hosting - gnulib.git/commitdiff
bootstrap: fix option propagation with --bootstrap-sync
authorPádraig Brady <P@draigBrady.com>
Sun, 10 Dec 2023 14:46:58 +0000 (14:46 +0000)
committerBruno Haible <bruno@clisp.org>
Thu, 18 Jan 2024 08:02:49 +0000 (09:02 +0100)
* top/bootstrap: Ensure options are propagated through
upgrade_bootstrap().
* top/bootstrap-funclib.sh: Likewise.
* build-aux/bootstrap: Auto generated with `make build-aux/bootstrap`.
Fixes https://bugs.gnu.org/67731

ChangeLog
build-aux/bootstrap
top/bootstrap
top/bootstrap-funclib.sh

index 2a88f5c327124d1c477cbe1b9710033b54263b6a..4516b008b5cd3a9ad18f001fb21b940cdc04ffe0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2023-12-10  Pádraig Brady  <P@draigBrady.com>
+
+       bootstrap: fix option propagation with --bootstrap-sync
+       * top/bootstrap: Ensure options are propagated through
+       upgrade_bootstrap().
+       * top/bootstrap-funclib.sh: Likewise.
+       * build-aux/bootstrap: Auto generated with `make build-aux/bootstrap`.
+       Fixes https://bugs.gnu.org/67731
+
 2023-12-01  Paul Eggert  <eggert@cs.ucla.edu>
 
        frexp, frexpf: pacify clang re address-of-volatile
index 93e000d155df348368a2943e92e7ce2a4a1cd7a9..90e4b24f0e93e3d93a99ecfce01a40e883b24a57 100755 (executable)
@@ -760,7 +760,7 @@ autopull()
   if $use_gnulib || $bootstrap_sync; then
     prepare_GNULIB_SRCDIR
     if $bootstrap_sync; then
-      upgrade_bootstrap
+      upgrade_bootstrap "$@"
     fi
   fi
 
@@ -1470,7 +1470,7 @@ check_build_prerequisites $use_git
 
 if $bootstrap_sync; then
   prepare_GNULIB_SRCDIR
-  upgrade_bootstrap
+  upgrade_bootstrap "$@"
   # Since we have now upgraded if needed, no need to try it a second time below.
   bootstrap_sync=false
 fi
index 74af1b7e5979d4149d788e7daffeb2e4c2470a45..3c8048d99e5e3718c2c60a175633ab8bb43cfad4 100755 (executable)
@@ -188,7 +188,7 @@ check_build_prerequisites $use_git
 
 if $bootstrap_sync; then
   prepare_GNULIB_SRCDIR
-  upgrade_bootstrap
+  upgrade_bootstrap "$@"
   # Since we have now upgraded if needed, no need to try it a second time below.
   bootstrap_sync=false
 fi
index 12b668c46d4366da35472f17ceec8cb3487b983d..ae08830a19424b7a930cdee2e0d3224d79c51b11 100644 (file)
@@ -723,7 +723,7 @@ autopull()
   if $use_gnulib || $bootstrap_sync; then
     prepare_GNULIB_SRCDIR
     if $bootstrap_sync; then
-      upgrade_bootstrap
+      upgrade_bootstrap "$@"
     fi
   fi