diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-06-11 04:54:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-06-11 04:54:02 +0000 |
commit | 6a52655896758dbd9443af30d116090bd86d198f (patch) | |
tree | a96e458c6bd55cb0e33ac40c97fadf386f10926a /sys-apps/dmapi/files | |
parent | improved documentation (diff) | |
download | gentoo-2-6a52655896758dbd9443af30d116090bd86d198f.tar.gz gentoo-2-6a52655896758dbd9443af30d116090bd86d198f.tar.bz2 gentoo-2-6a52655896758dbd9443af30d116090bd86d198f.zip |
Fix parallel install problem #180672 by Maarten Billemont.
(Portage version: 2.1.2.9)
Diffstat (limited to 'sys-apps/dmapi/files')
-rw-r--r-- | sys-apps/dmapi/files/dmapi-2.2.8-symlinks.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys-apps/dmapi/files/dmapi-2.2.8-symlinks.patch b/sys-apps/dmapi/files/dmapi-2.2.8-symlinks.patch new file mode 100644 index 000000000000..bf913248c144 --- /dev/null +++ b/sys-apps/dmapi/files/dmapi-2.2.8-symlinks.patch @@ -0,0 +1,19 @@ +Fix installing in parallel + +http://bugs.gentoo.org/180672 + +--- include/Makefile ++++ include/Makefile +@@ -9,9 +9,9 @@ + LSRCFILES = builddefs.in buildmacros buildrules dmapi_kern.h + LDIRT = xfs + +-default install : +- rm -f xfs +- $(LN_S) . xfs ++xfs: ++ $(LN_S) . $@ ++default install : xfs + + include $(BUILDRULES) + |