vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 285f4f7da8bd6f4903e1c77c25e022f4fe77f8a1
parent fa55efd4089720be7b780d43e626d38fdd13d019
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Thu, 30 Jan 2020 14:51:22 +0100

build: explicitly list configure options for docker builds

This should catch Alpine package changes such as the one fixed in
f8e20cfa30be62f287d3a16f1a9a4d0c8f59b241.

Diffstat:
MMakefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -90,7 +90,10 @@ docker: clean $(DOCKER) exec vis apk update $(DOCKER) exec vis apk upgrade $(DOCKER) cp . vis:/build/vis - $(DOCKER) exec vis ./vis/configure CC='cc --static' --enable-acl + $(DOCKER) exec vis ./vis/configure CC='cc --static' \ + --enable-acl \ + --enable-lua \ + --enable-lpeg-static $(DOCKER) exec vis make -C vis VERSION="$(VERSION)" clean vis-single $(DOCKER) cp vis:/build/vis/vis-single vis $(DOCKER) kill vis