Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 29 Mar 2016 15:09:22 +0000 (UTC)
From:      Jimmy Olgeni <olgeni@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r412120 - in head/lang: erlang-runtime16 erlang-runtime17
Message-ID:  <201603291509.u2TF9MeZ048559@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603291509.u2TF9MeZ048559>