diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-05-22 17:41:29 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-05-22 17:41:29 +0000 |
commit | d7c4f9ad1633b48f154d19c92324ee6068948df6 (patch) | |
tree | 8a7b7dce0961bde2a9204ae7a02b37b13a22628f /maketgz | |
parent | 9db5e3476aa73a0e3be0780ae4ff5933b9dd7a1c (diff) | |
download | c-ares-d7c4f9ad1633b48f154d19c92324ee6068948df6.tar.gz c-ares-d7c4f9ad1633b48f154d19c92324ee6068948df6.tar.bz2 c-ares-d7c4f9ad1633b48f154d19c92324ee6068948df6.zip |
make sure the configure.ac file with the correct version number is shipped
in the tarball
Diffstat (limited to 'maketgz')
-rwxr-xr-x | maketgz | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,11 +38,11 @@ if(!-f "configure") { `./buildconf`; } print "adding $version in the configure.ac file\n"; -`sed -e 's/AC_INIT.*/AC_INIT([c-ares], [$version])/' < configure.ac > configure.ac-rel`; +`sed -e 's/AC_INIT.*/AC_INIT([c-ares], [$version])/' < configure.ac > configure.ac.dist`; # now make a new configure script with this print "makes a new configure script\n"; -`autoconf configure.ac-rel >configure`; +`autoconf configure.ac.dist >configure`; # now run this new configure to get a fine makefile print "running configure\n"; @@ -53,6 +53,6 @@ print "running make dist\n"; `make dist`; print "removing temporary configure.ac file\n"; -`rm configure.ac-rel`; +`rm configure.ac.dist`; print "NOTE: now cvs tag this release!\n"; |