aboutsummaryrefslogtreecommitdiffstats
path: root/make_dist
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-06-21 23:10:34 +0200
committerJay Berkenbilt <ejb@ql.org>2012-06-21 23:28:19 +0200
commit85d9e7dfed31cf4b9307fad920422a7b433fc35c (patch)
treec369ee15ccecf7b9c0a8d493768ec61084c45a15 /make_dist
parentc2e5ca48e0c3cc5cab3b1da2f9acc2df4a49b142 (diff)
downloadqpdf-85d9e7dfed31cf4b9307fad920422a7b433fc35c.tar.zst
Fix version pattern for configure.ac
Diffstat (limited to 'make_dist')
-rwxr-xr-xmake_dist2
1 files changed, 1 insertions, 1 deletions
diff --git a/make_dist b/make_dist
index 9296c5ad..fb1436e6 100755
--- a/make_dist
+++ b/make_dist
@@ -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;