我如何在mac上编译sshfs文件系统?

时间:2013-10-10 01:06:33

标签: c osx-leopard sshfs

我下载并安装了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

1 个答案:

答案 0 :(得分:1)

我对autotools了解不多,但我认为你需要运行的命令不仅仅是autoconf。试试这个序列:

aclocal
autoconf
autoheader
automake --foreign --add-missing --copy
./configure
make
sudo make install
相关问题