diff options
| author | Christian Hesse <mail@eworm.de> | 2017-01-19 13:34:51 +0100 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2017-01-19 14:17:10 +0100 |
| commit | cc551cb0423a1de1e969174ad12a0b53191bab9b (patch) | |
| tree | 3a6fb52e0ce61015fb1b46f8155c64ef56528c87 /GNUmakefile | |
| parent | e247d57ccda74f765b1a71dba9d9c2e5c582acc4 (diff) | |
| download | vis-cc551cb0423a1de1e969174ad12a0b53191bab9b.tar.gz vis-cc551cb0423a1de1e969174ad12a0b53191bab9b.tar.xz | |
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 (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 1a9bfa0..712a35d 100644 --- 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 |
