diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2011-11-17 00:07:55 +0800 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2011-11-17 00:07:55 +0800 |
commit | c8b3834f73e582b1d5bfb35d83a55345d69ffe50 (patch) | |
tree | 7b16ee0b92749cee05cb9b4f3ac12d3cb3b38baa /lang/s9fes | |
parent | 0e09362bec1b51a1df4a53c0e0d9129c2d17728f (diff) | |
download | freebsd-ports-gnome-c8b3834f73e582b1d5bfb35d83a55345d69ffe50.tar.gz freebsd-ports-gnome-c8b3834f73e582b1d5bfb35d83a55345d69ffe50.tar.zst freebsd-ports-gnome-c8b3834f73e582b1d5bfb35d83a55345d69ffe50.zip |
Instead of marking this port as make jobs (-jX) unsafe, apply a trivial fix
and also properly respect CC, CFLAGS, PREFIX, and LIBDIR.
Approved by: maintainer, eadler@
Feature safe: yes
Diffstat (limited to 'lang/s9fes')
-rw-r--r-- | lang/s9fes/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/s9fes/Makefile b/lang/s9fes/Makefile index f782a516e9bc..174d71c267c1 100644 --- a/lang/s9fes/Makefile +++ b/lang/s9fes/Makefile @@ -13,14 +13,14 @@ MASTER_SITES= http://www.t3x.org/misc/ MAINTAINER= nmh@t3x.org COMMENT= A portable Scheme interpreter with a Unix interface +MAKE_ARGS= CC=${CC} CFLAGS="${CFLAGS}" PREFIX=${PREFIX} LIBDIR=${DATADIR} WRKSRC= ${WRKDIR}/s9 MAN1= s9.1 MANCOMPRESSED= yes -MAKE_JOBS_UNSAFE= yes post-patch: - ${REINPLACE_CMD} -e "s,PREFIX=.*,PREFIX=${PREFIX}," ${WRKSRC}/Makefile - ${REINPLACE_CMD} -e "s,LIBDIR=.*,LIBDIR=${DATADIR}," ${WRKSRC}/Makefile +# Fix parallel (-jX) build: add missing target prerequisite + @${REINPLACE_CMD} -e '/^arse-core.image/s,:,: s9,' ${WRKSRC}/Makefile .include <bsd.port.mk> |