X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=tools%2Frelease.sh;h=ac8af646e86562d6942c6731582c48238c7b4fe6;hb=4a9a07b1c5189e8f9024fa843f511a0e948e61b5;hp=c464c49f72f0dabf6961199d7db6b10230e41996;hpb=16f485aca2193b06d182ab30dd5afe36826e92b5;p=openocd.git diff --git a/tools/release.sh b/tools/release.sh index c464c49f72..ac8af646e8 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -102,7 +102,7 @@ do_stage() { for EXT in tar.gz tar.bz2 zip; do local FILE="${PACKAGE_RELEASE}.${EXT}" # create archive signatures - for HASH in md5 sha1; do + for HASH in sha256; do echo "sign: ${FILE}.${HASH}" ${HASH}sum "${FILE}" > "archives/${FILE}.${HASH}" done @@ -125,8 +125,8 @@ do_clean_all() { do_version_commit() { [ "$*" ] || die "usage: $0 commit " - git add configure.in || die "error: no version changes to commit" - git commit -q -m "$*" configure.in + git add configure.ac || die "error: no version changes to commit" + git commit -q -m "$*" configure.ac } do_version_finalize() { @@ -205,7 +205,7 @@ For older NEWS, see the NEWS files associated with each release For more information about contributing test reports, bug fixes, or new features and device support, please read the new Developer Manual (or -the BUGS and PATCHES files in the source archive). +the BUGS and PATCHES.txt files in the source archive). NEWS git add NEWS @@ -281,7 +281,7 @@ do_reset() { maybe_bootstrap maybe_configure do_clean_all - git checkout configure.in + git checkout configure.ac } LONGOPTS="fast,final,start-rc,next-tag:,next:,help"