Subject: Re: turn off buildlinking and USE_X11 and tools not needed for
To: None <tech-pkg@netbsd.org>
From: Juan RP <juan@xtrarom.org>
List: tech-pkg
Date: 05/05/2005 20:07:26
On Thu, 5 May 2005 18:40:53 +0200
Juan RP <juan@xtrarom.org> wrote:

> > Also, I see that this same meta-pkg build populated the .tools/bin and
> > .gcc/bin directories. Can that be turned off?
> 
> Hmm maybe USE_LANGUAGES= # empty? (for the .gcc/bin directory)

The problem here is that:

# Always require a C compiler for proper compiler detection.
USE_LANGUAGES?= c
.if empty(USE_LANGUAGES:Mc)
USE_LANGUAGES:= c ${USE_LANGUAGES}
.endif

USE_LANGUAGES= # is always ignored, because 'c' is always added.