aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2010-03-27 14:17:17 +0100
committerJay Berkenbilt <ejb@ql.org>2010-03-27 14:17:17 +0100
commit75b55b7aad4fab2def877c33ae9649166dea3efe (patch)
tree4946dcad6459a201e6e5fde9209d177883186bab
parente5fbae0a376b8d91d9c6f3636a1a2f39d2b28dce (diff)
downloadqpdf-75b55b7aad4fab2def877c33ae9649166dea3efe.tar.zst
create autogen.sh for convenience
git-svn-id: svn+q:///qpdf/trunk@943 71b93d88-0707-0410-a8cf-f5a4172ac649
-rw-r--r--README.maintainer4
-rwxr-xr-xautogen.sh4
-rwxr-xr-xmake_dist4
3 files changed, 6 insertions, 6 deletions
diff --git a/README.maintainer b/README.maintainer
index 1ff7d501..019a41d4 100644
--- a/README.maintainer
+++ b/README.maintainer
@@ -26,9 +26,7 @@ Release Reminders
* To construct a source distribution from a pristine checkout,
make_dist does the following:
- aclocal -I m4
- autoheader
- autoconf
+ ./autogen.sh
./configure --enable-doc-maintenance
make build_manual
make distclean
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 00000000..f6a3afbd
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+aclocal -I m4
+autoheader
+autoconf
diff --git a/make_dist b/make_dist
index d5f11a2e..71e3be55 100755
--- a/make_dist
+++ b/make_dist
@@ -109,9 +109,7 @@ if ($version_error)
die "$whoami: version numbers are not consistent\n";
}
-run("aclocal -I m4");
-run("autoheader");
-run("autoconf");
+run("./autogen.sh");
run("./configure --enable-doc-maintenance");
run("make build_manual");
run("make distclean");