From 5241c5f21968dd259311681f2794b424ab245d02 Mon Sep 17 00:00:00 2001 From: Daniel Bertalan Date: Mon, 25 Oct 2021 14:57:34 +0200 Subject: [PATCH] Ports: Enable history handling in bc An oversight in the TTY defaults caused bc to reach an assertion failure when it tried to set up raw mode for printing the history. Now that this is fixed, we can finally enable history handling. --- Ports/bc/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/bc/package.sh b/Ports/bc/package.sh index 4c7f5c8fe2..2e9afc34fb 100755 --- a/Ports/bc/package.sh +++ b/Ports/bc/package.sh @@ -8,7 +8,7 @@ configscript=configure.sh auth_type="sig" auth_import_key="E2A30324A4465A4D5882692EC08038BDF280D33E" auth_opts=("bc-${version}.tar.xz.sig") -configopts=("--prefix=/usr/local" "--disable-nls" "--disable-history") +configopts=("--prefix=/usr/local" "--disable-nls") configure() { run env HOSTCC=gcc ./"$configscript" "${configopts[@]}"