diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2012-06-04 02:53:48 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2012-06-04 02:53:48 +0000 |
commit | 11bd290c5b0bb9c38b434c426176709b3f80385d (patch) | |
tree | 42bfd6457602aa3df1e2036fa10c7a3fc9a8228a | |
parent | Minor improvement suggested by portlint. (diff) |
- convert to OptionsNG
PR: 168646
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=298321
-rw-r--r-- | lang/petite-chez/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/petite-chez/Makefile b/lang/petite-chez/Makefile index ddf72d160f03..ebdff54863cc 100644 --- a/lang/petite-chez/Makefile +++ b/lang/petite-chez/Makefile @@ -23,7 +23,7 @@ NO_PACKAGE= user must accept license terms before installation IGNORE= user must accept license terms before installation .endif -OPTIONS= THREADS "Install threaded version" off +OPTIONS_DEFINE= THREADS WRKSRC= ${WRKDIR}/csv${PORTVERSION}/custom HAS_CONFIGURE= yes @@ -49,7 +49,7 @@ CHEZ_MACHTYPE= i3fb CHEZ_MACHTYPE= a6fb .endif -.if defined(WITH_THREADS) +.if ${PORT_OPTIONS:MTHREADS} CHEZ_MACHTYPE:= t${CHEZ_MACHTYPE} .endif |