diff options
author | hans <hans@pkgsrc.org> | 2011-04-20 19:42:17 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2011-04-20 19:42:17 +0000 |
commit | 302a72a5cef6b947be21a2c41f0154bf4af3bc45 (patch) | |
tree | c3996ccde68eea603c43771483b219eef2197fce /lang/clisp | |
parent | cdd37e1d74e38cc2dbb3b712b0aaf5102e781d8b (diff) | |
download | pkgsrc-302a72a5cef6b947be21a2c41f0154bf4af3bc45.tar.gz |
Fix build on SunOS.
Diffstat (limited to 'lang/clisp')
-rw-r--r-- | lang/clisp/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index 29e43dbc645..bbaec65bb64 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.80 2011/01/13 13:53:28 wiz Exp $ +# $NetBSD: Makefile,v 1.81 2011/04/20 19:42:17 hans Exp $ # DISTNAME= clisp-2.49 @@ -49,6 +49,14 @@ TEST_TARGET= check mod-check CONFIGURE_ARGS+= --disable-mmap .endif +.if ${OPSYS} == "SunOS" +USE_TOOLS+= bash +CONFIG_SHELL= ${TOOLS_PATH.bash} +.endif + +post-extract: + (cd ${WRKSRC} && ${CP} -p src/gllib/mbrtowc.c modules/syscalls/gllib) + .include "options.mk" .include "../../converters/libiconv/buildlink3.mk" |