Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | From 2acce7bc8ab7711e76c7765c84a198fe38f247f3 Mon Sep 17 00:00:00 2001 |
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Tue, 18 Jul 2017 23:06:41 -0400 |
| 4 | Subject: [PATCH] fix parallel error |
| 5 | |
| 6 | Upstream-Status: Pending |
| 7 | |
| 8 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
| 9 | --- |
| 10 | Makefile | 6 ++++-- |
| 11 | 1 file changed, 4 insertions(+), 2 deletions(-) |
| 12 | |
| 13 | diff --git a/Makefile b/Makefile |
| 14 | index fbdfcb4..2ad3238 100644 |
| 15 | --- a/Makefile |
| 16 | +++ b/Makefile |
| 17 | @@ -29,9 +29,11 @@ implantisomd5: implantisomd5.o libimplantisomd5.a |
| 18 | checkisomd5: checkisomd5.o libcheckisomd5.a |
| 19 | $(CC) $(CPPFLAGS) $(CFLAGS) checkisomd5.o libcheckisomd5.a -lpopt $(LDFLAGS) -o checkisomd5 |
| 20 | |
| 21 | -libimplantisomd5.a: libimplantisomd5.a(libimplantisomd5.o md5.o utilities.o) |
| 22 | +libimplantisomd5.a: libimplantisomd5.o md5.o utilities.o |
| 23 | + $(AR) rv $@ $^ |
| 24 | |
| 25 | -libcheckisomd5.a: libcheckisomd5.a(libcheckisomd5.o md5.o utilities.o) |
| 26 | +libcheckisomd5.a: libcheckisomd5.o md5.o utilities.o |
| 27 | + $(AR) rv $@ $^ |
| 28 | |
| 29 | pyisomd5sum.so: $(PYOBJS) |
| 30 | $(CC) $(CPPFLAGS) $(CFLAGS) -shared -g -fpic $(PYOBJS) $(LDFLAGS) -o pyisomd5sum.so |
| 31 | -- |
| 32 | 2.8.1 |
| 33 | |