diff options
author | olgeni <olgeni@FreeBSD.org> | 2010-01-09 04:21:01 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2010-01-09 04:21:01 +0800 |
commit | bcf7c12940fd6b1e77c66d3e45b4a3690f4f2526 (patch) | |
tree | 30834dcc1464513fdddaa159ab2ae28dce31caf8 /lang/ccl | |
parent | 9e9bf114068bbfe044291b55957747060378f47c (diff) | |
download | freebsd-ports-gnome-bcf7c12940fd6b1e77c66d3e45b4a3690f4f2526.tar.gz freebsd-ports-gnome-bcf7c12940fd6b1e77c66d3e45b4a3690f4f2526.tar.zst freebsd-ports-gnome-bcf7c12940fd6b1e77c66d3e45b4a3690f4f2526.zip |
Build without using a temporary script.
Diffstat (limited to 'lang/ccl')
-rw-r--r-- | lang/ccl/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lang/ccl/Makefile b/lang/ccl/Makefile index 84252a55950e..ca56d1a41814 100644 --- a/lang/ccl/Makefile +++ b/lang/ccl/Makefile @@ -18,7 +18,6 @@ WRKSRC= ${WRKDIR}/ccl ONLY_FOR_ARCHS= i386 amd64 -BUILD_SCRIPT= ${WRKSRC}/build.lisp CCL_DIRECTORY= ${PREFIX}/lib/ccl CCL_PLIST= ${WRKDIR}/pkg-plist # the following files will not be installed @@ -49,10 +48,9 @@ do-build: ${ECHO_MSG} "===> This CPU doesn't support the SSE2 instruction set: cannot build port."; \ exit 1; \ fi - @${ECHO_CMD} "(ccl:rebuild-ccl :full t)" > ${BUILD_SCRIPT} - @${ECHO_CMD} "(quit)" >> ${BUILD_SCRIPT} - @cd ${WRKSRC} && (${ECHO_CMD} "(quit)" \ - | ./${FX86CL} --batch --quiet --load ${BUILD_SCRIPT}) + @cd ${WRKSRC} && ${ECHO_CMD} | ./${FX86CL} --no-init --batch --quiet \ + --eval "(ccl:rebuild-ccl :full t)" \ + --eval "(quit)" do-install: @${MKDIR} ${CCL_DIRECTORY} |