diff options
| author | Christian Hesse <mail@eworm.de> | 2017-01-20 09:17:21 +0100 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2017-01-20 09:17:21 +0100 |
| commit | a6d36cef54d7b89f7b7ec57e6c75c59fcc52f9b4 (patch) | |
| tree | 6f00815c7a49e8e6a722fa3a691bfe008a6fc2eb | |
| parent | 53f84f7cbafcb177406f8f7bcc890e626e72ca63 (diff) | |
| download | vis-a6d36cef54d7b89f7b7ec57e6c75c59fcc52f9b4.tar.gz vis-a6d36cef54d7b89f7b7ec57e6c75c59fcc52f9b4.tar.xz | |
standalone: work around borked dependencies in attr
We already did this change for acl (commit cc551cb0). In attr it shows
slightly different symptoms and happens for parallel builds only. The
fix is the same.
| -rw-r--r-- | GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 38a27e2..ec018a0 100644 --- 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 |
