diff options
author | 2007-06-11 04:54:02 +0000 | |
---|---|---|
committer | 2007-06-11 04:54:02 +0000 | |
commit | 3ad8e61a9cfa6cfd44d851e707a57082c2c5ca69 (patch) | |
tree | 6470444b95e7c031f8fde3fb13701033d56e5673 /sys-apps/dmapi/files | |
parent | improved documentation (diff) | |
download | historical-3ad8e61a9cfa6cfd44d851e707a57082c2c5ca69.tar.gz historical-3ad8e61a9cfa6cfd44d851e707a57082c2c5ca69.tar.bz2 historical-3ad8e61a9cfa6cfd44d851e707a57082c2c5ca69.zip |
Fix parallel install problem #180672 by Maarten Billemont.
Package-Manager: portage-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) + |