vis

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

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

commit 7489297453fa1ed0f17a1c3c8e13c277345939dd
parent e9d4437e0c28935231de3108171ad83d6f2df9e3
Author: Christian Hesse <mail@eworm.de>
Date:   Thu, 19 Jan 2017 13:34:51 +0100

standalone: work around borked dependencies in acl

For any reason acl decides do build getfacl and setfacl on `make [...]
install-lib install-dev`, which may fail. Make sure to not fail by
installing from libacl and include subdirectories.

Diffstat:
MGNUmakefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/GNUmakefile b/GNUmakefile @@ -201,7 +201,8 @@ dependency/build/libacl-build: dependency/build/libacl-configure touch $@ dependency/build/libacl-install: dependency/build/libacl-build - $(MAKE) -C $(dir $<)/$(LIBACL) DESTDIR=$(DEPS_ROOT) install-lib install-dev + $(MAKE) -C $(dir $<)/$(LIBACL)/libacl DESTDIR=$(DEPS_ROOT) install-dev + $(MAKE) -C $(dir $<)/$(LIBACL)/include DESTDIR=$(DEPS_ROOT) install-dev touch $@ # COMMON