Re: [PATCH] dist: add new "pure-dist" automake option
Jim Meyering <[email protected]>
| Newsgroups | gmane.comp.sysutils.automake.patches |
|---|---|
| Message-ID | <CA+8g5KHg=BCzKEPmRD5Vsg8okhoGuQUdGwdMoBWV9i2dAhKuRg@mail.gmail.com> |
On Mon, Jul 5, 2021 at 4:16 PM Jim Meyering <[email protected]> wrote: > In incidentally-related news, I found that make check now hangs on > tests-environment-fd-redirect on Fedora 34, so I'm investigating that. FYI, I'm currently working around this by disabling the ksh-testing part of that test:
fedora-ksh-hang-workaround.diff
(application/octet-stream, 403 B)
diff --git a/t/tests-environment-fd-redirect.sh b/t/tests-environment-fd-redirect.sh
index e7159c791..b33ab9d3c 100644
--- a/t/tests-environment-fd-redirect.sh
+++ b/t/tests-environment-fd-redirect.sh
@@ -69,7 +69,7 @@ case $SHELL in
done;;
esac
-for sh in "$SHELL" "$bin_ksh"; do
+for sh in "$SHELL" ; do
test "$sh" = : && continue
for pfx in AM_ ''; do
unindent > Makefile.am <<END