On Mon, Sep 1, 2025, at 1:57 PM, Stan Marsh wrote: >>>Maybe it changed between 5.3 rc2 and 5.3 release. 5.3 rc2 was compiled as >>>is; no >>>local changes. > >>It didn't. > > I could disprove this
% mkdir /tmp/bash && cd /tmp/bash % curl -Os 'https://ftp.gnu.org/pub/gnu/bash/bash-5.3-rc2.tar.gz' % tar -xzf bash-5.3-rc2.tar.gz % cd ./bash-5.3-rc2 % { ./configure && make; } >/dev/null 2>&1; echo "$?" 0 % ./bash -c 'shopt -p extglob' shopt -u extglob -- vq