pacho 15/03/22 11:10:33 Added: gvfs-1.22.4-fix-parallel.patch Log: Fix parallel installation (#543812 by tman, Aaron U'Ren and many others) (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.1 gnome-base/gvfs/files/gvfs-1.22.4-fix-parallel.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gvfs/files/gvfs-1.22.4-fix-parallel.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gvfs/files/gvfs-1.22.4-fix-parallel.patch?rev=1.1&content-type=text/plain Index: gvfs-1.22.4-fix-parallel.patch =================================================================== >From 62c4c2af399dba0566ae69353f127472fa3e3364 Mon Sep 17 00:00:00 2001 From: Ross Lagerwall <[email protected]> Date: Mon, 16 Mar 2015 00:06:07 +0000 Subject: 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. diff --git a/programs/completion/Makefile.am b/programs/completion/Makefile.am index 06833e5..971e4ee 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 -- cgit v0.10.2
