문제

I downloaded and installed FUSE for osx package.

I downloaded sshfs for mac and successfully installed it on my mac running OSX 10.6.8.

However, at some point, I would like to make some changes to sshfs the source code.

Following is what I tried to build sshfs:

git clone https://github.com/osxfuse/sshfs.git
cd sshfs
autoconf
chmod +x configure
./configure
configure: error: cannot find install-sh or install.sh in "." "./.." "./../.."

I am stuck and not sure how to fix this. Looking at the git repository there is no find that is install-sh or install.sh

도움이 되었습니까?

해결책

I don't know much about autotools, but I think you need to run more commands than just autoconf. Try this sequence:

aclocal
autoconf
autoheader
automake --foreign --add-missing --copy
./configure
make
sudo make install
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top