Ticket Change Details
Not logged in
Overview

Artifact ID: c00d981c8da3394cf30a19476da12723cc56a1ff
Ticket: 5ad1d9a23ca5a8462fb6058efdb8a56489c3ed0c
Makefile fails to run uname with GNU Make 3.82
User & Date: anonymous 2011-06-12 23:01:15
Changes

  1. comment changed to:
    When trying to build Fossil on Haiku (ticket 084eedc010), I run into a problem with the Makefile. The following syntaxes do not seem to be supported by GNU Make 3.82:
    
    HOST_OS :sh = uname -s
    
    and
    
    HOST_OS = $(uname -s:sh)
    
    The following does work (but breaks things for other make variants, I assume):
    
    HOST_OS = $(shell uname -s)
    
  2. private_contact changed to: "d91f4b46f6a4e7c071173444645f09807bb42bc0"
  3. severity changed to: "Important"
  4. status changed to: "Open"
  5. title changed to: "Makefile fails to run uname with GNU Make 3.82"
  6. type changed to: "Build_Problem"