[project @ 2002-11-04 04:15:46 by unknown_lamer]
authorunknown_lamer <unknown>
Mon, 4 Nov 2002 04:15:46 +0000 (04:15 +0000)
committerunknown_lamer <unknown>
Mon, 4 Nov 2002 04:15:46 +0000 (04:15 +0000)
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
bootstrap [new file with mode: 0644]

index e4ec61c..82d24ae 100644 (file)
@@ -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 (file)
index 0000000..275322a
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+aclocal
+automake --add-missing
+autoconf
\ No newline at end of file