Running Linux configure error in Fix8 C++ library?

c++, debian, linux, ubuntu

Solution

The files mentioned in the error are placed in the source directory by autoconf and should be distributed in the release tarball. If they are not it's a bug, so please report it to the author.

If you have autoconf installed, you can get the files by running `./bootstrap` (or whatever script it has; the usual name is `./autogen.sh`), but you are not supposed to need autoconf to run configure script.

Problem

I am trying to run Fix8 at Fix8.org. I am following the README instructions as explained at: https://github.com/dakka/fix8 I am getting an error when running the ./configure command? It results in: ``` configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.." ``` Does anyone have experience in fixing this? I m running both latest versions of Debian and Ubuntu Linux. Thanks

Original source