On Thu, Sep 13, 2012 at 02:30:19PM -0400, Peter Colberg wrote:
> I have trouble installing the Git Perl module to the correct
> installation prefix, which is required for git send-email.
> 
> The problem is reproducible with the following commands:
> 
>     ./configure --prefix=/home/peter/usr/rhel6-x86_64/git-1.7.12
>     make
>     make install
> 
> While git is installed to --prefix, the Git Perl module is not:

Sorry, I have figured out the reason: The above commands are in fact
invoked from an installation makefile, which uses PREFIX as the
package installation prefix. Apparently this PREFIX variable was
inherited by make install, but only for the perl module.

    make -f packages.mk PREFIX=/home/peter/usr/rhel6-x86_64 
CONCURRENCY_LEVEL=16 install-git

If I run configure/make/make install manually, it works fine.

Please excuse the false report.

Peter
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to