From: Daniel Stenberg Date: Thu, 25 Mar 2010 09:38:17 +0000 (+0100) Subject: s/CVS/DEV in the version string from the git repo X-Git-Tag: curl-7_20_1~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a1a66c7cd636a5960beaad30e961928ad27d9f5b;p=curl s/CVS/DEV in the version string from the git repo --- diff --git a/tests/libtest/test1022.pl b/tests/libtest/test1022.pl index a3f318abb..60eee384c 100755 --- a/tests/libtest/test1022.pl +++ b/tests/libtest/test1022.pl @@ -23,7 +23,7 @@ open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config --$what l $_ = ; chomp; if ( $what eq "version" ) { - /^libcurl ([\.\d]+(-CVS)?)$/ ; + /^libcurl ([\.\d]+(-DEV)?)$/ ; $curlconfigversion = $1; } else { @@ -31,8 +31,8 @@ else { /^(..)(..)(..)$/ ; $curlconfigversion = hex($1) . "." . hex($2) . "." . hex($3); - # Strip off the -CVS from the curl version if it's there - $version =~ s/-CVS$//; + # Strip off the -DEV from the curl version if it's there + $version =~ s/-DEV$//; } close CURLCONFIG;