Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - make: install: Command not found (upon installing git): (2 Items)
   
make: install: Command not found (upon installing git)  
While I'm trying to install git from its source [0], I get the following error:

    # ./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've seen many "make: %XXX%: Command not found" issues upon Googling where %XXX% is arbitrary executable, but haven't 
seen it replaced with install. What is wrong?

I posted some files of possible interest from git's home directory: Makefile[1], config.status [2].

QNX 6.5.0 SDP SP1, git 1.8.3.2

[0] http://git-scm.com/downloads
[1] http://pastebin.com/ZLJk1kF2
[2] http://pastebin.com/P7nbewdL
Re: make: install: Command not found (upon installing git)  
I don't know if you still require answer this question, but I encountered the same issue. This is caused by the fact QNX
 doesn't have install command. To do this, someone else had implement an equivalent script, which can be found here:

http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob;f=build-aux/install-sh;h=
0b0fdcbba69ab6dd05ca162a5328828d46ab1d54;hb=HEAD

Download and rename file as "install"
Put it in one of the directory in PATH

Now, "make install" should work.

All credits goes to Matthew Kraai for the solution and guidance.