diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2020-06-20 02:09:12 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2020-06-20 02:09:12 +0000 |
commit | fdbefa0bcc11e8ce3b98b58a7003760167cec896 (patch) | |
tree | b09353fee0405ece59df25ea335c7df3c54cc5a2 /lang/smlnj | |
parent | print/scribus-devel: fix build when LLVM 10 is in use (diff) |
Fix conditional. "defined(${MLSIZE})" is only true if MLSIZE's value
happens to be a defined variable name.
Reported by: tobik
Approved by: portmgr (tier-2 blanket)
Notes
Notes:
svn path=/head/; revision=539692
Diffstat (limited to 'lang/smlnj')
-rw-r--r-- | lang/smlnj/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/smlnj/Makefile b/lang/smlnj/Makefile index 82603a394798..7779a16ee1ff 100644 --- a/lang/smlnj/Makefile +++ b/lang/smlnj/Makefile @@ -79,7 +79,7 @@ MLSRCS+= ${MLROOT}/${srcdir} MLTARGETS= heap2asm MLEXE= asdlgen heap2exec ml-antlr ml-build ml-burg ml-lex \ ml-makedepend ml-ulex ml-yacc sml -.if defined(${MLSIZE}) && ${MLSIZE} == 32 +.if defined(MLSIZE) && ${MLSIZE} == 32 MLEXE+= ml-nlffigen .endif .if ${PORT_OPTIONS:MEVERYTHING} |