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 | e9d78ab72dd3bbe268a4d403fa56337cc0e70aa8 (patch) | |
tree | c3996ccde68eea603c43771483b219eef2197fce /lang/clisp | |
parent | f71b55f906479ab55ace2d9ac548a331e1365cc2 (diff) | |
download | pkgsrc-e9d78ab72dd3bbe268a4d403fa56337cc0e70aa8.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" |