Fix version pattern for configure.ac

This commit is contained in:
Jay Berkenbilt 2012-06-21 17:10:34 -04:00
parent c2e5ca48e0
commit 85d9e7dfed
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ my $fh = safe_open("configure.ac");
my $config_version = 'unknown';
while (<$fh>)
{
if (m/^AC_INIT\(qpdf,([^\)]+)\)/)
if (m/^AC_INIT\(\[qpdf\],\[([^\)]+)\]\)/)
{
$config_version = $1;
last;