tools: update release scripts to use configure.ac

we have already updated autoconf to use configure.ac instead of
configure.in, so update release.sh to use the new name.

Change-Id: I2dc2beaf2f85058c4627183bc093052677ccba1b
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/537
Tested-by: jenkins
This commit is contained in:
Spencer Oliver
2012-03-20 21:19:16 +00:00
parent c68a267ee1
commit 222afb3d0e
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -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() {
@@ -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"