svn commit: r403763 - head/java/openjdk8

Jung-uk Kim jkim at FreeBSD.org
Tue Dec 15 06:45:18 UTC 2015


Author: jkim
Date: Tue Dec 15 06:45:16 2015
New Revision: 403763
URL: https://svnweb.freebsd.org/changeset/ports/403763

Log:
  Fix build with fmake.
  
  Reported by:	antoine

Modified:
  head/java/openjdk8/Makefile

Modified: head/java/openjdk8/Makefile
==============================================================================
--- head/java/openjdk8/Makefile	Tue Dec 15 05:30:07 2015	(r403762)
+++ head/java/openjdk8/Makefile	Tue Dec 15 06:45:16 2015	(r403763)
@@ -270,7 +270,7 @@ AUTOCONF_ARGS=	-I . -o generated-configu
 
 # XXX configure script rejects CC/CPP/CXX with absolute paths.
 .for t in CC CPP CXX
-.if defined(${t}) && ${${t}:[#]} == 1 && ${${t}:M/*}
+.if defined(${t}) && ${${t}:M/*}
 BUILD_${t}=	${${t}:C|.*/||g}
 CONFIGURE_ENV+=	${t}="${BUILD_${t}}"
 TOOLS_DIR+=	${${t}:S|/${BUILD_${t}}$||}


More information about the svn-ports-head mailing list