Make: install: command not found

While I try to install git from my source on qnx , I get the following error (note that pound is a prompt for sudo in 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 

I saw a lot of make: %XXX%: Command not found problems in Googling, where %XXX% is an arbitrary executable, but did not see it replaced with install . What's wrong?

I posted several files of possible interest from the git home directory: Makefile , config.status

qnx 6.5.0 SDP SP1, git 1.8.3.2

+1
git makefile qnx qnx-neutrino
source share
1 answer

There are no problems in the makefile. Check if there is install utility

 $~ install --help 

If you do not have it, you can get it from GNU coreutils . If you have install somewhere, then export its path to the PATH variable

 export PATH=$PATH:/path/to/install-utility 
+3
source share

All Articles