blob: 0fe0b1cde358dd1293c1ac757fdc4407c625cd94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Get rid of the implicit rule entirely (bug #212398).
--- sysstat-9.0.3/Makefile.in.orig 2009-04-13 16:27:15.000000000 +0200
+++ sysstat-9.0.3/Makefile.in 2009-05-31 18:48:48.000000000 +0200
@@ -175,9 +175,7 @@
# Explicit rules needed to prevent possible file corruption
# when using parallel execution.
-libsyscom.a: libsyscom.a(common.o ioconf.o)
- $(AR) rv $@ common.o
- $(AR) rv $@ ioconf.o
- $(AR) s $@
+libsyscom.a: common.o ioconf.o
+ $(AR) rvs $@ $?
librdstats.a: librdstats.a(rd_stats.o)
|