]> 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)
committerPádraig Brady <P@draigBrady.com>
Sun, 10 Dec 2023 18:59:11 +0000 (18:59 +0000)
* 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 1a3429e03b639f715ff8ce3094a45454e6d563cb..a017833f64eaae8251d0fd2d48b329e8b3ff7df5 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 979b3af62e933abde12a7f77f634a2e7e48e747d..e2490b8bbcf77efe577ef851b973f64754cd5b36 100755 (executable)
@@ -3,7 +3,7 @@
 
 # Bootstrap this package from checked-out sources.
 
-scriptversion=2023-08-29.21; # UTC
+scriptversion=2023-12-10.18; # UTC
 
 # Copyright (C) 2003-2023 Free Software Foundation, Inc.
 #
@@ -37,7 +37,7 @@ medir=`dirname "$me"`
 
 # A library of shell functions for autopull.sh, autogen.sh, and bootstrap.
 
-scriptlibversion=2023-08-28.18; # UTC
+scriptlibversion=2023-12-10.18; # UTC
 
 # Copyright (C) 2003-2023 Free Software Foundation, Inc.
 #
@@ -777,7 +777,7 @@ autopull()
   if $use_gnulib || $bootstrap_sync; then
     prepare_GNULIB_SRCDIR
     if $bootstrap_sync; then
-      upgrade_bootstrap
+      upgrade_bootstrap "$@"
     fi
   fi
 
@@ -1496,7 +1496,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 6c170d35dee983b2ac80f26e5ed256bbed571528..26dad5804639d049fdd807307d1c8af15d1e3036 100755 (executable)
@@ -1,7 +1,7 @@
 #! /bin/sh
 # Bootstrap this package from checked-out sources.
 
-scriptversion=2023-08-29.21; # UTC
+scriptversion=2023-12-10.18; # UTC
 
 # Copyright (C) 2003-2023 Free Software Foundation, Inc.
 #
@@ -192,7 +192,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 54deea66a26258c948a9ee2647e98bbb8a8e91c1..c6dbeacf7f6c50677b8099b8fdca4dd0fd0c27f2 100644 (file)
@@ -1,6 +1,6 @@
 # A library of shell functions for autopull.sh, autogen.sh, and bootstrap.
 
-scriptlibversion=2023-08-29.21; # UTC
+scriptlibversion=2023-12-10.18; # UTC
 
 # Copyright (C) 2003-2023 Free Software Foundation, Inc.
 #
@@ -740,7 +740,7 @@ autopull()
   if $use_gnulib || $bootstrap_sync; then
     prepare_GNULIB_SRCDIR
     if $bootstrap_sync; then
-      upgrade_bootstrap
+      upgrade_bootstrap "$@"
     fi
   fi