Closed macosforgebot closed 15 years ago
@wsanchez originally submitted this as comment:1:ticket:322
Fair point. Try r3679 and see if that works for you. I tried to just check for any of a number of possible hashing command rather than trying to guess based on platform name.
jacobg23@… originally submitted this as ticket:322
If you try to build on Linux you'll get warnings about the 'md5' executable not existing. The following patch fixes it. This is, admittedly, rather low-priority but I thought I'd send you the patch:
Index: run =================================================================== --- run (revision 3652) +++ run (working copy) @@ -48,6 +48,12 @@
+if [ "$(uname -s)" == "Darwin" ]; then + md5="md5" +else + md5="md5sum" +fi +
@@ -318,7 +324,7 @@
@@ -401,7 +407,7 @@