svn commit: r539431 - head/lang/smlnj
Mark Linimon
linimon at FreeBSD.org
Wed Jun 17 17:02:35 UTC 2020
Author: linimon
Date: Wed Jun 17 17:02:35 2020
New Revision: 539431
URL: https://svnweb.freebsd.org/changeset/ports/539431
Log:
Fix INDEX build on !x86 architectures.
Approved by: portmgr (tier-2 blanket)
Modified:
head/lang/smlnj/Makefile
Modified: head/lang/smlnj/Makefile
==============================================================================
--- head/lang/smlnj/Makefile Wed Jun 17 16:41:24 2020 (r539430)
+++ head/lang/smlnj/Makefile Wed Jun 17 17:02:35 2020 (r539431)
@@ -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 ${MLSIZE} == 32
+.if defined(${MLSIZE}) && ${MLSIZE} == 32
MLEXE+= ml-nlffigen
.endif
.if ${PORT_OPTIONS:MEVERYTHING}
More information about the svn-ports-all
mailing list