dev-util/ftjam: pass -std=gnu89

Does not build with `clang -std=c2x`, early workaround for
when this will become a default.

(not actively hunting for these, merely revisiting packages
previously looked at for clang16 even if not an issue "yet").

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens
2022-10-11 04:20:43 -04:00
parent 82343f7848
commit 16756fccbf

View File

@@ -3,7 +3,7 @@
EAPI=7
inherit toolchain-funcs
inherit flag-o-matic toolchain-funcs
MY_PV=$(ver_rs 3 "")
@@ -33,5 +33,6 @@ src_prepare() {
default
tc-export CC RANLIB
append-cflags -std=gnu89 # old codebase, incompatible with c2x
export AR="$(tc-getAR) ru" #720706
}