From 9823b8bf84167dfdea14a3663317ad880149bec6 Mon Sep 17 00:00:00 2001 From: unknown_lamer Date: Mon, 4 Nov 2002 04:15:46 +0000 Subject: [PATCH] [project @ 2002-11-04 04:15:46 by unknown_lamer] Added boostrap and fixed README.CVS. It turns out autoreconf doesn't work for some reason, so I'll just use a bootstrap script like the Autotools book suggests. --- README.CVS | 6 +++--- bootstrap | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 bootstrap diff --git a/README.CVS b/README.CVS index e4ec61c..82d24ae 100644 --- a/README.CVS +++ b/README.CVS @@ -1,6 +1,6 @@ Run - autoreconf --install --symlink + ./bootstrap -to boostrap the source tree. Then follow the generic installation -instructions. +to boostrap the source tree. Then make sure to run configure with +`--enable-maintainer-mode' diff --git a/bootstrap b/bootstrap new file mode 100644 index 0000000..275322a --- /dev/null +++ b/bootstrap @@ -0,0 +1,5 @@ +#!/bin/sh + +aclocal +automake --add-missing +autoconf \ No newline at end of file -- 2.20.1