summaryrefslogtreecommitdiff
blob: 6e163c8eb1253ba9dcbd7959c81ab4f4deaa5bfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Fix installing in parallel

http://bugs.gentoo.org/166729

--- include/Makefile
+++ include/Makefile
@@ -37,10 +37,9 @@
 LSRCFILES += command.h input.h path.h project.h
 LDIRT = xfs disk
 
-default install :
-	rm -f xfs disk
-	$(LN_S) . xfs
-	$(LN_S) . disk
+xfs disk:
+	$(LN_S) . $@
+default install : xfs disk
 
 include $(BUILDRULES)