blob: f048b33bb6a5b914c9d66697d52e431543d90e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
diff -Naur isomd5sum-1.0.7/Makefile isomd5sum-1.0.7.patched//Makefile
--- isomd5sum-1.0.7/Makefile 2011-04-08 04:43:01.000000000 -0400
+++ isomd5sum-1.0.7.patched//Makefile 2011-07-15 01:43:55.000000000 -0400
@@ -29,9 +29,13 @@
checkisomd5: checkisomd5.o libcheckisomd5.a
$(CC) -lpopt $(CFLAGS) checkisomd5.o libcheckisomd5.a -o checkisomd5
-libimplantisomd5.a: libimplantisomd5.a(libimplantisomd5.o md5.o)
+libimplantisomd5.a: libimplantisomd5.o md5.o
+ ar rc libimplantisomd5.a libimplantisomd5.o md5.o
+ ranlib libimplantisomd5.a
-libcheckisomd5.a: libcheckisomd5.a(libcheckisomd5.o md5.o)
+libcheckisomd5.a: libcheckisomd5.o md5.o
+ ar rc libcheckisomd5.a libcheckisomd5.o md5.o
+ ranlib libcheckisomd5.a
pyisomd5sum.so: $(PYOBJS)
$(CC) -shared -g -o pyisomd5sum.so -fpic $(PYOBJS) $(LDFLAGS)
|