diff options
author | bouyer <bouyer@pkgsrc.org> | 2019-06-04 11:34:44 +0000 |
---|---|---|
committer | bouyer <bouyer@pkgsrc.org> | 2019-06-04 11:34:44 +0000 |
commit | 95794a36a6040a5f23502c537de063ecfd0fb621 (patch) | |
tree | 06dae64d7331110233f7321d4f9f7b7608dedd0d | |
parent | 979e111b2a8589cf8c269a6bdc4a7a640345ff45 (diff) | |
download | pkgsrc-95794a36a6040a5f23502c537de063ecfd0fb621.tar.gz |
Use bash to run the configure script
-rw-r--r-- | graphics/pngquant/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/pngquant/Makefile b/graphics/pngquant/Makefile index ce404131464..ec4643e692a 100644 --- a/graphics/pngquant/Makefile +++ b/graphics/pngquant/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/05/31 10:06:18 adam Exp $ +# $NetBSD: Makefile,v 1.3 2019/06/04 11:34:44 bouyer Exp $ DISTNAME= pngquant-2.12.3-src PKGNAME= ${DISTNAME:S/-src//} @@ -13,8 +13,9 @@ LICENSE= gnu-gpl-v3 WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} HAS_CONFIGURE= yes +CONFIG_SHELL= ${TOOLS_PATH.bash} USE_LANGUAGES= c c99 -USE_TOOLS+= gmake pkg-config +USE_TOOLS+= gmake pkg-config bash CONFIGURE_ARGS+= --prefix=${PREFIX} CONFIGURE_ARGS+= --with-libimagequant=${BUILDLINK_PREFIX.libimagequant} |