]> 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:12:46 +0000 (09:12 +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 103d66e0d0f55080f06122681901239075f18b23..4c418233a0f9d9d997c7a1fa17b060cb6f5a4e7d 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 8068d048e68f2263332cee2431c7cbf63894a994..15705a0e9bef3aa114922c712436d80069f2ef8a 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
 
@@ -1475,7 +1475,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 325ca7ed39c9da94d19474f47c52bcb33c7f4c9f..3154af0dd41963da170bb3306c151bfdbcdf9138 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