diff options
author | Paul Jakma <paul.jakma@hpe.com> | 2016-02-11 15:25:52 +0000 |
---|---|---|
committer | Paul Jakma <paul.jakma@hpe.com> | 2016-03-08 17:53:23 +0000 |
commit | 988e22f8429ce678ba503bddaaf4ec9f9965eb73 (patch) | |
tree | 3b56d5e76973b570ed76b2db7b8bba207b28b094 | |
parent | 283d5d7f2fa12c3d33dc17962154665a9993b2c5 (diff) | |
download | quagga-988e22f8429ce678ba503bddaaf4ec9f9965eb73.tar.bz2 quagga-988e22f8429ce678ba503bddaaf4ec9f9965eb73.tar.xz |
configure.ac: remove -dev in version
* configure.ac: Remove the -dev suffix from the version, some package
systems at least do not like non-numeric strings in package versions
(e.g., rpm, which I often use in testing Quagga).
TODO: Work out some sensible scheme for semi-autogenerating the version
perhaps via git describe. The --with-pkg-git-version doesn't affect the
tarball name.
-rwxr-xr-x | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7aaacb96..c6844147 100755 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ ## AC_PREREQ(2.53) -AC_INIT(Quagga, 0.99.25-dev, [https://bugzilla.quagga.net]) +AC_INIT(Quagga, 0.99.25, [https://bugzilla.quagga.net]) CONFIG_ARGS="$*" AC_SUBST(CONFIG_ARGS) AC_CONFIG_SRCDIR(lib/zebra.h) |