Commit 75b55b7aad4fab2def877c33ae9649166dea3efe

Authored by Jay Berkenbilt
1 parent e5fbae0a

create autogen.sh for convenience

git-svn-id: svn+q:///qpdf/trunk@943 71b93d88-0707-0410-a8cf-f5a4172ac649
README.maintainer
... ... @@ -26,9 +26,7 @@ Release Reminders
26 26 * To construct a source distribution from a pristine checkout,
27 27 make_dist does the following:
28 28  
29   - aclocal -I m4
30   - autoheader
31   - autoconf
  29 + ./autogen.sh
32 30 ./configure --enable-doc-maintenance
33 31 make build_manual
34 32 make distclean
... ...
autogen.sh 0 → 100755
  1 +#!/bin/sh
  2 +aclocal -I m4
  3 +autoheader
  4 +autoconf
... ...
make_dist
... ... @@ -109,9 +109,7 @@ if ($version_error)
109 109 die "$whoami: version numbers are not consistent\n";
110 110 }
111 111  
112   -run("aclocal -I m4");
113   -run("autoheader");
114   -run("autoconf");
  112 +run("./autogen.sh");
115 113 run("./configure --enable-doc-maintenance");
116 114 run("make build_manual");
117 115 run("make distclean");
... ...