make:install:找不到命令

时间:2013-07-03 09:49:20

标签: git makefile qnx qnx-neutrino

当我尝试从git的源代码安装qnx时,我收到以下错误(请注意,pound是qnx中sudo的提示符):

# ./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

我在谷歌搜索中看到很多make: %XXX%: Command not found个问题,其中%XXX%是任意可执行文件,但未将其替换为install。有什么问题?

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

QNX 6.5.0 SDP SP1,git 1.8.3.2

1 个答案:

答案 0 :(得分:4)

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

$~ install --help

如果你没有,那么你可以从GNU coreutils获得它。如果某处有install,请在PATH变量

中导出其路径
export PATH=$PATH:/path/to/install-utility