]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix release script and update configure for STABLE3
authorAmos Jeffries <amosjeffries@squid-cache.org>
Mon, 31 Mar 2008 06:18:50 +0000 (00:18 -0600)
committerAmos Jeffries <amosjeffries@squid-cache.org>
Mon, 31 Mar 2008 06:18:50 +0000 (00:18 -0600)
configure.in
mkrelease.sh

index b881028a53d2479479fcbb8403168e9daa0b3ae9..50eb224870d9f0de15e1ad51abafef3f0cc8f74d 100644 (file)
@@ -5,7 +5,7 @@ dnl  $Id: configure.in,v 1.488.2.3 2008/03/04 12:17:04 amosjeffries Exp $
 dnl
 dnl
 dnl
-AC_INIT(Squid Web Proxy, 3.0.STABLE2-CVS, http://www.squid-cache.org/bugs/, squid)
+AC_INIT(Squid Web Proxy, 3.0.STABLE3-BZR, http://www.squid-cache.org/bugs/, squid)
 AC_PREREQ(2.52)
 AM_CONFIG_HEADER(include/autoconf.h)
 AC_CONFIG_AUX_DIR(cfgaux)
index 42cd33dae4b3d71571f95c93afd0178d51a735db..fb1b9ee634a3862369e62935899552faea9618cc 100755 (executable)
@@ -31,7 +31,13 @@ tmpdir=${TMPDIR:-${PWD}}/${name}-mkrelease
 rm -rf $name.tar.gz $tmpdir
 trap "rm -rf $tmpdir" 0
 
-bzr export $tmpdir $BZRROOT/$module/tags/$tag || exit 1
+# AYJ 2008-03-31: add the named tag for use below.
+bzr tag $tag
+bzr export -r tag:$tag $tmpdir || exit 1
+#
+# AYJ: 2008-03-31: initial export attempt dies on 'not a branch' error.
+# bzr export $tmpdir $BZRROOT/$module/tags/$tag || exit 1
+#
 if [ ! -f $tmpdir/configure ]; then
        echo "ERROR! Tag $tag not found in $module"
 fi