svn commit: r412120 - in head/lang: erlang-runtime16 erlang-runtime17

Jimmy Olgeni olgeni at FreeBSD.org
Tue Mar 29 15:09:23 UTC 2016


Author: olgeni
Date: Tue Mar 29 15:09:21 2016
New Revision: 412120
URL: https://svnweb.freebsd.org/changeset/ports/412120

Log:
  Make sure that ODBC is actually built in lang/erlang-runtime16
  and lang/erlang-runtime17.

Modified:
  head/lang/erlang-runtime16/Makefile
  head/lang/erlang-runtime17/Makefile

Modified: head/lang/erlang-runtime16/Makefile
==============================================================================
--- head/lang/erlang-runtime16/Makefile	Tue Mar 29 15:08:07 2016	(r412119)
+++ head/lang/erlang-runtime16/Makefile	Tue Mar 29 15:09:21 2016	(r412120)
@@ -173,6 +173,11 @@ pre-configure:
 	echo "disabled by port options" > ${WRKSRC}/lib/wx/SKIP
 .endif
 
+post-configure:
+.if ${PORT_OPTIONS:MODBC}
+	${RM} ${WRKSRC}/lib/odbc/SKIP
+.endif
+
 post-install:
 	for SECTION in 1 3 4 6 7; do \
 		${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_MAN} \

Modified: head/lang/erlang-runtime17/Makefile
==============================================================================
--- head/lang/erlang-runtime17/Makefile	Tue Mar 29 15:08:07 2016	(r412119)
+++ head/lang/erlang-runtime17/Makefile	Tue Mar 29 15:09:21 2016	(r412120)
@@ -189,6 +189,11 @@ pre-configure:
 	echo "disabled by port options" > ${WRKSRC}/lib/wx/SKIP
 .endif
 
+post-configure:
+.if ${PORT_OPTIONS:MODBC}
+	${RM} ${WRKSRC}/lib/odbc/SKIP
+.endif
+
 post-install:
 	for SECTION in 1 3 4 6 7; do \
 		${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_MAN} \


More information about the svn-ports-head mailing list