当我尝试从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
的主目录中发布了一些可能感兴趣的文件:Makefile,config.status
QNX
6.5.0 SDP SP1,git
1.8.3.2
答案 0 :(得分:4)
makefile没有问题。
检查您是否有install
实用程序
$~ install --help
如果你没有,那么你可以从GNU coreutils
获得它。如果某处有install
,请在PATH
变量
export PATH=$PATH:/path/to/install-utility