0

我下载并安装了FUSE for osx package

我下载了 sshfs for mac并成功安装在我运行 OSX 10.6.8 的 mac 上。

但是,在某些时候,我想对 sshfs源代码进行一些更改。

以下是我尝试构建 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

4

1 回答 1

1

我对自动工具了解不多,但我认为您需要运行更多命令而不仅仅是autoconf. 试试这个顺序:

aclocal
autoconf
autoheader
automake --foreign --add-missing --copy
./configure
make
sudo make install
于 2013-11-01T01:29:16.620 回答