]> git.sur5r.net Git - openocd/blobdiff - tools/release.sh
rtos/linux.c: fix clang static analyzer warning
[openocd] / tools / release.sh
index c464c49f72f0dabf6961199d7db6b10230e41996..ac8af646e86562d6942c6731582c48238c7b4fe6 100755 (executable)
@@ -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 <message>"
-       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"