2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 18:00:52 +00:00

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

View File

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