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 | 498e939f0e3da75cbd8b9093fb7846006e7f814b (patch) | |
tree | af3ad594547da04c81e5a105d168daf8f05dfd66 | |
parent | 9a22b893b633558dadae66fcbba6b40546fecf5f (diff) |
make sure the configure.ac file with the correct version number is shipped
in the tarball
-rwxr-xr-x | ares/maketgz | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ares/maketgz b/ares/maketgz index ab17a26ac..7663dc057 100755 --- a/ares/maketgz +++ b/ares/maketgz @@ -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"; |