Fix version parsing for real, cut 3.10.0_2
This commit is contained in:
parent
ca4ce91497
commit
4201bf3b03
3 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
# DDCLIENT v3.10.0rc1
|
||||
# DDCLIENT v3.10.0
|
||||
|
||||
`ddclient` is a Perl client used to update dynamic DNS entries for accounts
|
||||
on many dynamic DNS services.
|
||||
|
@ -77,8 +77,8 @@ ddclient package.
|
|||
the directory:
|
||||
|
||||
```shell
|
||||
tar xvfa ddclient-3.10.0rc1.tar.gz
|
||||
cd ddclient-3.10.0rc1
|
||||
tar xvfa ddclient-3.10.0.tar.gz
|
||||
cd ddclient-3.10.0
|
||||
```
|
||||
|
||||
(If you are installing from a clone of the Git repository, you
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
AC_PREREQ([2.63])
|
||||
AC_INIT([ddclient], [3.10.0rc1])
|
||||
AC_INIT([ddclient], [3.10.0_2])
|
||||
AC_CONFIG_SRCDIR([ddclient.in])
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
|
|
@ -30,7 +30,7 @@ use IO::Socket::INET;
|
|||
use Socket qw(AF_INET AF_INET6 PF_INET PF_INET6);
|
||||
use Sys::Hostname;
|
||||
|
||||
use version 0.77; our $VERSION = version->declare('v3.10.0');
|
||||
use version 0.77; our $VERSION = version->declare('v3.10.0_2');
|
||||
(my $version = $VERSION->stringify()) =~ s/^v//;
|
||||
my $programd = $0;
|
||||
$programd =~ s%^.*/%%;
|
||||
|
|
Loading…
Reference in a new issue