Date: Mon, 10 Feb 2020 14:21:23 +0000 (UTC) From: Dirk Meyer <dinoex@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525708 - head/emulators/vice Message-ID: <202002101421.01AELNb3055734@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dinoex Date: Mon Feb 10 14:21:22 2020 New Revision: 525708 URL: https://svnweb.freebsd.org/changeset/ports/525708 Log: - fix build on i386 Modified: head/emulators/vice/Makefile Modified: head/emulators/vice/Makefile ============================================================================== --- head/emulators/vice/Makefile Mon Feb 10 14:06:50 2020 (r525707) +++ head/emulators/vice/Makefile Mon Feb 10 14:21:22 2020 (r525708) @@ -98,6 +98,13 @@ pre-configure: .if ! ${PORT_OPTIONS:MDOCS} ${REINPLACE_CMD} -e 's| doc||' ${WRKSRC}/Makefile.in .endif +.if ${ARCH} == "i386" + ${REINPLACE_CMD} \ + -e 's|^@HAVE_BSD_FREE_FALSE@|@HAVE_BSD_FREE2_TRUE@|' \ + -e 's|^@HAVE_BSD_FREE_TRUE@|@HAVE_BSD_FREE_FALSE@|' \ + -e 's|^@HAVE_BSD_FREE2_TRUE@|@HAVE_BSD_FREE_TRUE@|' \ + ${WRKSRC}/src/Makefile.in +.endif pre-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002101421.01AELNb3055734>