On 11/14/2012 12:18 PM, Quintin Ronan wrote:
> Hello,
> 
> I’m trying to compile git 1.7 on a HPUX server using make.
> The ./configure worked well :
>
> [SNIP]
> 
> But when i run make (with –d) it simply doesn’t work with a message
> which isn’t really helpfull :
> 
>   [SNIP]
>   Make: line 313: syntax error.  Stop.
> 
> Can you help me ?
> 
The Git build system requires GNU make, but it seems to me you are using
your system native make instead.  That won't work.  It might be the case
GNU make is installed on your system, but is named something like 'gmake'
or 'gnumake' rather than just 'make'.  What happens if you run the
following?

   $ gmake --version
   $ gnumake --version

If GNU make is not installed on your system, you can download the latest
version from here:

    <http://ftp.gnu.org/gnu/make/make-3.82.tar.gz>

For more information about GNU make:

    <http://www.gnu.org/software/make/>

HTH,
  Stefano
--
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