[Commits] (heikki) Remove the MD5 check for now because it can cause problems on some cygwin installations, and the Mac MD5 is not exactly compatible with the other MD5 programs.

commits at osafoundation.org commits at osafoundation.org
Mon Sep 13 13:33:03 PDT 2004


Commit by: heikki
Modified files:
chandler/Makefile 1.46 1.47

Log message:
Remove the MD5 check for now because it can cause problems on some cygwin installations, and the Mac MD5 is not exactly compatible with the other MD5 programs.

ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/Makefile.diff?r1=text&tr1=1.46&r2=text&tr2=1.47

Index: chandler/Makefile
diff -u chandler/Makefile:1.46 chandler/Makefile:1.47
--- chandler/Makefile:1.46	Fri Sep 10 11:17:42 2004
+++ chandler/Makefile	Mon Sep 13 13:33:02 2004
@@ -51,20 +51,21 @@
 FRAMEWORK=Library/Frameworks/Python.framework/Versions/2.3
 SITE=$(FRAMEWORK)/lib/python2.3/site-packages
 MD5=md5
+MD5CHECK=$(MD5) --check
 else
 ifeq ($(OS),Cygwin)
 PLATFORM=windows
 SITE=bin/Lib/site-packages
 MD5=md5sum.exe
+MD5CHECK=$(MD5) -c
 else
 PLATFORM=linux
 SITE=lib/python2.3/site-packages
 MD5=md5sum
+MD5CHECK=$(MD5) -c
 endif
 endif
 
-MD5CHECK=$(MD5) --check
-
 ifeq ($(CHANDLERHOME),)
 CHANDLERHOME=.
 endif
@@ -95,7 +96,8 @@
 $(ARCHIVES):
 	$(CURL) $@ $(URL)/$(notdir $@)
 	$(CURL) $(@:=.md5) $(URL)/$(notdir $(@:=.md5))
-	(cd ..; $(MD5CHECK) $(notdir $(@:=.md5)))
+
+#	(cd ..; $(MD5CHECK) $(notdir $(@:=.md5)))
 
 $(BIN_ARCHIVES_INST):
 	tar -C $(CHANDLERBIN) -xvzf ../$(notdir $(basename $@))



More information about the Commits mailing list