svn commit: r386919 - in head/lang: erlang erlang-runtime17
Jimmy Olgeni
olgeni at FreeBSD.org
Thu May 21 08:35:51 UTC 2015
Author: olgeni
Date: Thu May 21 08:35:50 2015
New Revision: 386919
URL: https://svnweb.freebsd.org/changeset/ports/386919
Log:
Fix check for DIRTY option.
Submitted by: cperciva
Modified:
head/lang/erlang-runtime17/Makefile
head/lang/erlang/Makefile
Modified: head/lang/erlang-runtime17/Makefile
==============================================================================
--- head/lang/erlang-runtime17/Makefile Thu May 21 07:52:10 2015 (r386918)
+++ head/lang/erlang-runtime17/Makefile Thu May 21 08:35:50 2015 (r386919)
@@ -148,7 +148,7 @@ CONFIGURE_ARGS+=--enable-smp-support
CONFIGURE_ARGS+=--disable-smp-support
.endif
-.if ${PORT_OPTIONS:DIRTY}
+.if ${PORT_OPTIONS:MDIRTY}
CONFIGURE_ARGS+=--enable-dirty-schedulers
.endif
Modified: head/lang/erlang/Makefile
==============================================================================
--- head/lang/erlang/Makefile Thu May 21 07:52:10 2015 (r386918)
+++ head/lang/erlang/Makefile Thu May 21 08:35:50 2015 (r386919)
@@ -165,7 +165,7 @@ CONFIGURE_ARGS+=--enable-smp-support
CONFIGURE_ARGS+=--disable-smp-support
.endif
-.if ${PORT_OPTIONS:DIRTY}
+.if ${PORT_OPTIONS:MDIRTY}
CONFIGURE_ARGS+=--enable-dirty-schedulers
.endif
More information about the svn-ports-head
mailing list