Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autoconf not working in rawhide #84

Closed
tschoonj opened this issue Dec 30, 2020 · 1 comment
Closed

autoconf not working in rawhide #84

tschoonj opened this issue Dec 30, 2020 · 1 comment

Comments

@tschoonj
Copy link

Hi all,

I tried using fedora:rawhide as part of a Github Actions CI workflow for my GNU Autotools based project and ran immediately into trouble:

autoreconf -fi
41
/usr/bin/autoconf: This script requires a shell more modern than all
42
/usr/bin/autoconf: the shells that I found on your system.
43
/usr/bin/autoconf: Please tell bug-autoconf@gnu.org about your system,
44
/usr/bin/autoconf: including any error possibly output before this
45
/usr/bin/autoconf: message. Then install a modern shell, or manually run
46
/usr/bin/autoconf: the script under such a shell if you do have one.
47
autoreconf: /usr/bin/autoconf failed with exit status: 1

The same command works fine on fedora:latest as well as on centos:7 and centos:8.

Any thoughts on why this happened? Is there some new exotic default shell in rawhide??

@pevik
Copy link

pevik commented Feb 25, 2021

Fedora rawhide has problems seccomp() issue with faccessat2() due use glibc 2.33 (the same has openSUSE Tumbleweed and Arch, which also use glibc 2.33):
opencontainers/runc#2750
seccomp/libseccomp#314
I've sent a workaround to glibc: http://patchwork.ozlabs.org/project/glibc/patch/20210225194702.6113-1-pvorel@suse.cz/
Autoconf has problems because checking executable file does not work due this issue. Try
f=$(readlink -f /bin/sh); ls -la $f; if [ -x "$f" ]; then echo 'execute ok'; else echo 'execute *NOT* ok'; fi
and you'll see that /bin/sh is wrongly not detected as executable.

@cverna cverna closed this as completed Mar 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants