X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmkrelease;h=75b5e69658f62168d291faff0e25a6a110bae6d9;hb=HEAD;hp=177be7a39840cc29bbcd5bbca17fa13fffe8fb1d;hpb=ba4dd5b733448d85f815f6d45a6205c16adab7e8;p=openldap diff --git a/build/mkrelease b/build/mkrelease index 177be7a398..75b5e69658 100755 --- a/build/mkrelease +++ b/build/mkrelease @@ -2,7 +2,7 @@ # $OpenLDAP$ ## This work is part of OpenLDAP Software . ## -## Copyright 1998-2014 The OpenLDAP Foundation. +## Copyright 1998-2018 The OpenLDAP Foundation. ## All rights reserved. ## ## Redistribution and use in source and binary forms, with or without @@ -36,6 +36,16 @@ shift TAG=$1 shift +#Linux +#SHA="sha1sum" +#MD="md5sum" +#BSD +#SHA="sha1" +#MD="md5" +#OpenSSL +SHA="openssl sha1" +MD="openssl md5" + if test -e $RELNAME ; then echo "error: $RELNAME exists" exit 1 @@ -75,8 +85,8 @@ echo "Rolling up $OL_STRING ..." tar cf $RELNAME.tar $RELNAME gzip -9 -c $RELNAME.tar > $RELNAME.tgz -md5 $RELNAME.tgz > $RELNAME.md5 -sha1 $RELNAME.tgz > $RELNAME.sha1 +${MD} $RELNAME.tgz > $RELNAME.md5 +${SHA} $RELNAME.tgz > $RELNAME.sha1 rm -f $RELNAME.tar ls -l $RELNAME.*