aboutsummaryrefslogtreecommitdiff
path: root/tools/release/version.sh
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-03-20 21:19:16 +0000
committerSpencer Oliver <spen@spen-soft.co.uk>2012-03-30 15:55:01 +0000
commit222afb3d0e34c5717c816c9169d8e67bd2121069 (patch)
tree37bac5348e9a1dba036c0e7e20e9f3ddd064da36 /tools/release/version.sh
parentc68a267ee120bd027eacc0484a7a7b6e7c3f7054 (diff)
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
Diffstat (limited to 'tools/release/version.sh')
-rwxr-xr-xtools/release/version.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/release/version.sh b/tools/release/version.sh
index 8c6da273..d6c9434b 100755
--- a/tools/release/version.sh
+++ b/tools/release/version.sh
@@ -8,7 +8,7 @@
# NOTE Use with care! "RC" should only follow x.x.x, with
# vendor tags after that. Be traditional; avoid "rc0".
-# NOTE: This *ONLY* updates the "configure.in" version tag.
+# NOTE: This *ONLY* updates the "configure.ac" version tag.
# It does not affect GIT tags. Use this script immediately
# before making a release, to remove the "-dev" tag and to
# update the version label. Then commit the change and tag
@@ -34,7 +34,7 @@ do_version_sed() {
local NEW_VERSION="$1"
local MSG="$2"
- sed -i -e "/AC_INIT/ s|${OLD_VERSION}|${NEW_VERSION}|" configure.in
+ sed -i -e "/AC_INIT/ s|${OLD_VERSION}|${NEW_VERSION}|" configure.ac
package_info_load
echo "${MSG}: ${OLD_VERSION} -> ${NEW_VERSION}"
}