NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: toolchain/59416: tools/mandoc fails to build on host system where cc is not present
The following reply was made to PR toolchain/59416; it has been noted by GNATS.
From: Tobias Nygren <tnn%NetBSD.org@localhost>
To: palle%lyckegaard.dk@localhost
Cc: gnats-bugs%netbsd.org@localhost
Subject: Re: toolchain/59416: tools/mandoc fails to build on host system
where cc is not present
Date: Sun, 11 May 2025 22:29:17 +0200
On Sun, 11 May 2025 19:40:00 +0000 (UTC)
palle%lyckegaard.dk@localhost wrote:
> AR=ar
> -CC=cc
> +#CC=cc
> CFLAGS=
I suggest instead doing:
- AR=ar
- CC=cc
+ : "${AR:=ar}"
+ : "${CC:=cc}"
This would be more suitable for upstreaming too.
Home |
Main Index |
Thread Index |
Old Index