diff options
author | ryoon <ryoon@pkgsrc.org> | 2017-05-14 00:16:36 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2017-05-14 00:16:36 +0000 |
commit | a931f9b654adbd11829ab5f5e90b50816bcd20a4 (patch) | |
tree | 83668d5a3b2d3772619b13b04700d758a963bdd9 | |
parent | eb9eeecfc0287a5565f4f1b0de466997b408adae (diff) | |
download | pkgsrc-a931f9b654adbd11829ab5f5e90b50816bcd20a4.tar.gz |
Fix configure using ksh
The error is as follows.
./configure: 17376: Syntax error: no modifiers allowed with ${#var}
From the commit log of r1.127 src/bin/sh/parser.c,
it seems intentional. So use ksh explicitly.
-rw-r--r-- | graphics/ilmbase/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/ilmbase/Makefile b/graphics/ilmbase/Makefile index 473e472edb0..ce3fcc41524 100644 --- a/graphics/ilmbase/Makefile +++ b/graphics/ilmbase/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2014/08/22 11:24:25 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2017/05/14 00:16:36 ryoon Exp $ DISTNAME= ilmbase-2.2.0 PKGREVISION= 1 @@ -12,10 +12,11 @@ LICENSE= modified-bsd USE_LANGUAGES= c c++ USE_LIBTOOL= yes -USE_TOOLS+= gmake +USE_TOOLS+= ksh gmake GNU_CONFIGURE= yes TEST_TARGET= check LIBS.SunOS= -lm +CONFIG_SHELL= ksh PKGCONFIG_OVERRIDE= IlmBase.pc.in PTHREAD_OPTS= require |