diff options
author | grant <grant@pkgsrc.org> | 2006-04-01 11:21:42 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2006-04-01 11:21:42 +0000 |
commit | 9955d0c6404054f2ef7251714c76239c96d95ded (patch) | |
tree | be32f7140649ae1bd035871cd5657c656370ffca /devel | |
parent | becdf960ba71834dd732c082403c0e4a493c5772 (diff) | |
download | pkgsrc-9955d0c6404054f2ef7251714c76239c96d95ded.tar.gz |
use /bin/sh on Solaris, as libtool can cause ksh to dump core under
certain circumstances, observed devel/gettext-tools.
fixes PR pkg/32886 from Lloyd Parkes.
bump PKGREVISION.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libtool-base/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 305c79ad4ee..70d26f76d05 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.77 2006/03/14 20:43:23 jlam Exp $ +# $NetBSD: Makefile,v 1.78 2006/04/01 11:21:42 grant Exp $ ########################################################################### ########################################################################### @@ -26,7 +26,7 @@ .include "../../devel/libtool/Makefile.common" PKGNAME= ${DISTNAME:S/-/-base-/} -PKGREVISION= 2 +PKGREVISION= 3 SVR4_PKGNAME= ltoob COMMENT= Generic shared library support script (the script itself) @@ -55,6 +55,11 @@ CONFIGURE_ARGS+= --disable-shared BUILD_SHLIBTOOL= NO . endif +.elif ${OPSYS} == "SunOS" +# force the use of /bin/sh on Solaris because under some conditions, +# it causes ksh to dump core; see PR pkg/32886. +CONFIG_SHELL= /bin/sh + .endif CONFIGURE_ARGS+= --disable-ltdl-install |