svn commit: r464774 - head/sysutils/coreutils

Antoine Brodin antoine at FreeBSD.org
Sat Mar 17 09:25:04 UTC 2018


Author: antoine
Date: Sat Mar 17 09:25:03 2018
New Revision: 464774
URL: https://svnweb.freebsd.org/changeset/ports/464774

Log:
  Skip ENOMEM check for printf when building with qemu, this makes
  configure hang
  
  PR:		224740
  Reported by:	pkg-fallou
  MFH:		2018Q1

Modified:
  head/sysutils/coreutils/Makefile

Modified: head/sysutils/coreutils/Makefile
==============================================================================
--- head/sysutils/coreutils/Makefile	Sat Mar 17 09:15:45 2018	(r464773)
+++ head/sysutils/coreutils/Makefile	Sat Mar 17 09:25:03 2018	(r464774)
@@ -21,6 +21,10 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--program-prefix=g	\
 		--program-transform-name=s/stat/nustat/
 CONFIGURE_ENV=	FORCE_UNSAFE_CONFIGURE=1
+.ifdef QEMU_EMULATING
+# XXX bug 224740: configure hangs
+CONFIGURE_ENV+=	gl_cv_func_printf_enomem=no
+.endif
 CPPFLAGS+=	-I${LOCALBASE}/include
 LIBS+=		-L${LOCALBASE}/lib
 


More information about the svn-ports-all mailing list