pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/ilmbase



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Sun May 14 00:16:36 UTC 2017

Modified Files:
        pkgsrc/graphics/ilmbase: Makefile

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/graphics/ilmbase/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/ilmbase/Makefile
diff -u pkgsrc/graphics/ilmbase/Makefile:1.16 pkgsrc/graphics/ilmbase/Makefile:1.17
--- pkgsrc/graphics/ilmbase/Makefile:1.16       Fri Aug 22 11:24:25 2014
+++ pkgsrc/graphics/ilmbase/Makefile    Sun May 14 00:16:36 2017
@@ -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



Home | Main Index | Thread Index | Old Index