diff --git a/math/oleo/Makefile b/math/oleo/Makefile index 65c57d843312..ce23279377e3 100644 --- a/math/oleo/Makefile +++ b/math/oleo/Makefile @@ -47,7 +47,13 @@ pre-everything:: .endif post-patch: - @${FIND} ${WRKSRC} -name '*.[ch]' | ${XARGS} \ - ${REINPLACE_CMD} -e "s|||g" + @${GREP} -lR "malloc\.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ + 's|malloc\.h|stdlib.h|g' + +pre-build: +.for file in src/io-term.c + cd ${WRKSRC} && ${MV} ${file} ${file}.pre_iconv \ + && iconv -c -t ascii ${file}.pre_iconv > ${file} || ${TRUE} +.endfor .include