libdssl icon indicating copy to clipboard operation
libdssl copied to clipboard

configure: cannot find install-sh, install.sh or shtool

Open sugitime opened this issue 11 years ago • 11 comments

If the following error is encountered during ./configure:

configure: error: cannot find install-sh, install.sh, or shtool in build "."/build

Run the commands: (Ubuntu) sudo apt-get install automake autoconf libtool

Then rerun ./configure, make all, make install

sugitime avatar May 01 '14 18:05 sugitime

The problem won't go away by just installing automake/autoconf/libtool. One also needs to run 'autoreconf -i' before rerunning ./configure - it will install the missing files that ./configure is complaining about.

andreycpp avatar Aug 23 '16 05:08 andreycpp

@andreycpp I encountered the similar question. I solved it with your advice. Thanks.

autoreconf -i

Shawnxm avatar Aug 09 '17 21:08 Shawnxm

+1

shmu26 avatar Nov 29 '18 13:11 shmu26

thank you so much

oladimeji-abdul avatar Aug 05 '19 10:08 oladimeji-abdul

autoreconf -i thank you so much!

imhokoon avatar Sep 11 '19 02:09 imhokoon

autoreconf: 'configure.ac' or 'configure.in' is required I hava the new problem. What could be wrong?

TATAyu0413 avatar Dec 05 '19 06:12 TATAyu0413

@TATAyu0413 Exactly what the error says. When you run autoreconf -i, you need to be in a directory that has either a configure.ac or configure.in file, to be used as input to autoconf.

benbenolson avatar Dec 11 '19 23:12 benbenolson

aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in' above error resloved by using automake --add-missing command

ameypatil29 avatar Aug 13 '20 07:08 ameypatil29

autoreconf -i thank you so much!

black magic.

thecriticalpoint avatar Dec 08 '20 02:12 thecriticalpoint

I have the configure.ac file but when I run autoreconf -I it gives me this message autoreconf: failed to run aclocal: No such file or directory

any ideas?

NahlaFadl92 avatar Jun 21 '21 19:06 NahlaFadl92

I have the configure.ac file but when I run autoreconf -I it gives me this message autoreconf: failed to run aclocal: No such file or directory

any ideas?

Try installing automake

sbond75 avatar Jul 03 '22 21:07 sbond75