我下载并安装了FUSE for osx package。
我下载了sshfs for mac并将其成功安装在运行OSX 10.6.8的Mac上。
但是,在某些时候,我想对sshfs source code进行一些更改。
以下是我尝试构建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 "." "./.." "./../.."
我被卡住了,不确定如何解决这个问题。查看git存储库,没有找到install-sh或install.sh
最佳答案
我对自动工具了解不多,但我认为您需要运行的命令不仅限于autoconf
。请尝试以下顺序:
aclocal
autoconf
autoheader
automake --foreign --add-missing --copy
./configure
make
sudo make install
关于c - 如何在Mac上编译sshfs文件系统?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19285409/