make:安装:找不到命令

Isa*_*acS 1 git makefile qnx qnx-neutrino

当我尝试git从 上的源安装时qnx,出现以下错误(请注意,pound 是 sudo 中的提示qnx):

# ./configure --without-iconv --with-perl=/usr/pkg/bin/perl --with-python=/usr/qnx650/host/qnx6/x86/usr/bin/python
# make all
# make install
    GEN perl/PM.stamp
    SUBDIR gitweb
    SUBDIR ../
make[2]: `GIT-VERSION-FILE' is up to date.
    GEN git-instaweb
    SUBDIR git-gui
    SUBDIR gitk-git
    SUBDIR perl
    SUBDIR git_remote_helpers
    SUBDIR templates
install -d -m 755 '/usr/local/bin'
make: install: Command not found
make: *** [install] Error 127
Run Code Online (Sandbox Code Playgroud)

我在谷歌搜索任意可执行文件时看到了很多make: %XXX%: Command not found问题%XXX%,但还没有看到它被替换为install. 怎么了?

git我从的主目录发布了一些可能感兴趣的文件: Makefileconfig.status

QNX6.5.0 SDP gitSP1、1.8.3.2

Sag*_*kre 5

makefile没有问题。检查你是否有install实用程序

$~ install --help
Run Code Online (Sandbox Code Playgroud)

如果您没有,那么您可以从 获取GNU coreutils。如果你有install某个地方,则将其路径导出到PATH变量中

export PATH=$PATH:/path/to/install-utility
Run Code Online (Sandbox Code Playgroud)