diff options
author | cy <cy@FreeBSD.org> | 2019-08-12 12:44:37 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2019-08-12 12:44:37 +0800 |
commit | 29b17769665fe091b4ab4dbcd49e1fdd740490d5 (patch) | |
tree | d112ba8af38e391551db9ff427e74c912732f816 | |
parent | cf8dc0eefedbd254bb6d03cd2ee1176921c4cb3a (diff) | |
download | freebsd-ports-gnome-29b17769665fe091b4ab4dbcd49e1fdd740490d5.tar.gz freebsd-ports-gnome-29b17769665fe091b4ab4dbcd49e1fdd740490d5.tar.zst freebsd-ports-gnome-29b17769665fe091b4ab4dbcd49e1fdd740490d5.zip |
Mark broken when USE_GCC=9. Upstream git commit
63e9edcb6084d4b164439065e2d71f3e900ec3c7 resolves this issue.
Unfortunately it does not apply, requiring this port to be upated to
ksh93 well into ksh93-devel. Bringing ksh93 up to the ksh93-devel or
shy of it would negate the justification for ksh93's existence. It is
therefore recommended that people use ksh93-devel on architectures that
use GCC 9 or use GCC 8.
PR: 239644
Reported by: pkubaj@
-rw-r--r-- | shells/ksh93/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shells/ksh93/Makefile b/shells/ksh93/Makefile index 0735302b3cde..c522487e449b 100644 --- a/shells/ksh93/Makefile +++ b/shells/ksh93/Makefile @@ -13,6 +13,10 @@ LICENSE= EPL USES= compiler:c11 meson ninja python:build +.if ${USE_GCC} == "9" +BROKEN= GCC 9.1 changes the output of `gcc -E` which breaks the conf.sh script, fixed in shells/ksh93-devel +.endif + USE_GITHUB= yes GH_ACCOUNT= att GH_PROJECT= ast |