diff options
author | rillig <rillig@pkgsrc.org> | 2022-02-20 06:15:12 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2022-02-20 06:15:12 +0000 |
commit | 00343be77373c2aca000896848cc206bb21f73cb (patch) | |
tree | b42563e5b885296ff157f26d2fbf4680a15c29e0 | |
parent | 7e2a00357cdb67af903f8169d00ef1c273ac9fa8 (diff) | |
download | pkgsrc-00343be77373c2aca000896848cc206bb21f73cb.tar.gz |
print/sile: fix on platforms that don't use bash as default shell
./configure: 16205: Syntax error: Bad substitution
-rw-r--r-- | print/sile/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/print/sile/Makefile b/print/sile/Makefile index 4623e8a449a..86a2993e5c9 100644 --- a/print/sile/Makefile +++ b/print/sile/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2022/02/18 13:45:23 joerg Exp $ +# $NetBSD: Makefile,v 1.12 2022/02/20 06:15:12 rillig Exp $ DISTNAME= sile-0.12.2 CATEGORIES= print @@ -40,8 +40,9 @@ TEST_TARGET= test GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_TOOLS+= pkg-config gmake +USE_TOOLS+= bash pkg-config gmake +CONFIG_SHELL= ${BASH} CONFIGURE_ARGS+= LUA=${LUA_INTERPRETER} GIT=${FALSE} CONFIGURE_ARGS+= --with-system-luarocks |