summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2023-06-14 16:50:30 +0200
committerUlrich Müller <ulm@gentoo.org>2023-06-16 10:22:11 +0200
commit8209b1269bd0e9b24dd7a330cd0434452d80f550 (patch)
tree4895e36e27f60bdad83d6ef33b30ebf82a95d857 /eclass/estack.eclass
parentapp-eselect/eselect-ruby: add 20230616 (diff)
downloadgentoo-8209b1269bd0e9b24dd7a330cd0434452d80f550.tar.gz
gentoo-8209b1269bd0e9b24dd7a330cd0434452d80f550.tar.bz2
gentoo-8209b1269bd0e9b24dd7a330cd0434452d80f550.zip
estack.eclass: Fix bug in eshopts_push()
"eshopts_push -s autocd; eshopts_pop" (i.e. the first option listed by "shopt -p") would not restore the option because of bogus whitespace in the saved string. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/estack.eclass')
-rw-r--r--eclass/estack.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/estack.eclass b/eclass/estack.eclass
index c0823adb03f7..d00c931e117d 100644
--- a/eclass/estack.eclass
+++ b/eclass/estack.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: estack.eclass
@@ -156,7 +156,7 @@ evar_pop() {
eshopts_push() {
# Save both "shopt" and "set -o" option sets, because otherwise
# restoring posix would disable expand_aliases by side effect. #662586
- estack_push eshopts "$(shopt -p -o) $(shopt -p)"
+ estack_push eshopts "$(shopt -p -o; shopt -p)"
if [[ $1 == -[su] ]] ; then
[[ $# -le 1 ]] && return 0
shopt "$@" || die "${FUNCNAME}: bad options to shopt: $*"