https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/ Issue: www-servers/webfs-1.21 fails to compile (DASH-SYSTEM). Discovered on: amd64 (internal ref: dash_tinderbox) NOTE: (DASH-SYSTEM) in the summary means that the bug was found on a machine that runs /bin/sh as dash but this bug MAY or MAY NOT BE related to dash.
Created attachment 848671 [details] build.log build log and emerge --info
Created attachment 868641 [details, diff] Added patch to fix bashism This is not a bug in dash. The following line in mk/Autoconf.mk: @echo -e "$(make-config-q)" > $@ is a bashism. Quoting the POSIX standard for "echo": "Implementations shall not support any options." The patch I attached fixes the problem by changing it to printf, which is the portable way to do it.