svn commit: r508705 - head/shells/ksh93

Cy Schubert cy at FreeBSD.org
Mon Aug 12 04:44:38 UTC 2019


Author: cy
Date: Mon Aug 12 04:44:37 2019
New Revision: 508705
URL: https://svnweb.freebsd.org/changeset/ports/508705

Log:
  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@

Modified:
  head/shells/ksh93/Makefile   (contents, props changed)

Modified: head/shells/ksh93/Makefile
==============================================================================
--- head/shells/ksh93/Makefile	Mon Aug 12 04:44:24 2019	(r508704)
+++ head/shells/ksh93/Makefile	Mon Aug 12 04:44:37 2019	(r508705)
@@ -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


More information about the svn-ports-all mailing list