views:

16

answers:

0

I have generated my autoconf/automake files for my project. So far eveything works fine when I issue the ./configure && make && make install, however, when I do ./configure on some other machine, I get configure: error: cannot find install-sh or install.sh in "." "./.." "./../.."

If I ls -la on the source directory where I generated the automake files I get:

lrwxrwxrwx 1 user user   32 2010-07-07 17:15 depcomp -> /usr/share/automake-1.10/depcomp
lrwxrwxrwx 1 user user   32 2010-07-07 17:15 INSTALL -> /usr/share/automake-1.10/INSTALL
lrwxrwxrwx 1 user user   35 2010-07-07 17:15 install-sh -> /usr/share/automake-.10/install-sh
lrwxrwxrwx 1 user user   32 2010-07-07 17:15 missing -> /usr/share/automake-1.10/missing

But I know machine "2" has automake under /usr/share/automake-1.11/

Is there a way to fix this issue for any version of automake in case I would like to compile it in other machines?

FIXED: I was packaging my own tar.gz instead I did a make distcheck