vis

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

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

commit 25698e006fe2a2de57823b586a7054b22361ada5
parent cdde2c6bb31e7ef2e389dd7efdb8018e5c9462c3
Author: Christian Hesse <mail@eworm.de>
Date:   Fri, 20 Jan 2017 09:17:21 +0100

standalone: work around borked dependencies in attr

We already did this change for acl (commit 74892974). In attr it shows
slightly different symptoms and happens for parallel builds only. The
fix is the same.

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

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