summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2015-03-16 00:06:07 +0000
committerRoss Lagerwall <rosslagerwall@gmail.com>2015-03-16 00:06:07 +0000
commit62c4c2af399dba0566ae69353f127472fa3e3364 (patch)
tree0dc981572324c28889acf5603f62065ed3792a2b
parent2f119019a01cc9543def7a7e03f93e7a7cf6ca09 (diff)
downloadgvfs-62c4c2af399dba0566ae69353f127472fa3e3364.tar.gz
completion: Fix parallel installation
Use install-data-hook rather than install-data-local as install-data-hook runs after the other install rules have run. This is important for a parallel install so that the destination directory already exists when the symlinks are created.
-rw-r--r--programs/completion/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/completion/Makefile.am b/programs/completion/Makefile.am
index 06833e54..971e4ee9 100644
--- a/programs/completion/Makefile.am
+++ b/programs/completion/Makefile.am
@@ -35,6 +35,6 @@ uninstall-symlinks:
rm -f $(DESTDIR)$(BASHCOMP_DIR)/$$file; \
done
-install-data-local: install-symlinks
+install-data-hook: install-symlinks
uninstall-local: uninstall-symlinks