aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--libs/core.bash.in3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a8d3693..648e874 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-12-25 Ulrich Müller <ulm@gentoo.org>
+
+ * libs/core.bash.in (eval): Make it fatal again, after more than
+ one year of transition time.
+
2017-10-14 Ulrich Müller <ulm@gentoo.org>
* man/news.eselect.5: Update URI of GLEP 42.
diff --git a/libs/core.bash.in b/libs/core.bash.in
index 06f767e..281dbde 100644
--- a/libs/core.bash.in
+++ b/libs/core.bash.in
@@ -121,8 +121,7 @@ inherit() {
# make eval not work, because it's evil
eval() {
- write_warning_msg "Don't use eval. Find another way."
- builtin eval "$@"
+ die "Don't use eval. Find another way."
}
# GNU sed wrapper (sed or gsed, as determined by configure)