Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Oct 1998 01:29:55 -0700 (PDT)
From:      asami@FreeBSD.ORG (Satoshi Asami)
To:        obrien@NUXI.com
Cc:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject:   Re: cvs commit: ports/lang/gcc28 Makefile
Message-ID:  <199810090829.BAA00634@bubble.didi.com>
In-Reply-To: <19981008102715.A23724@nuxi.com> (obrien@NUXI.com)

next in thread | previous in thread | raw e-mail | index | archive | help
 * >   GNUHOST was defined twice.  
 * 
 * It *DOES* need to be defined twice.  The define for the ELF case is
 * different from the a.out case.  See the EGCS port.

Yes, but one was completely overshadowing the other.  It looked like:

 :
GNUHOST= i386-freebsd${OSREL}
 :
.include <bsd.port.mk>
.if ${PORTOBJFORMAT} == "elf"
BROKEN= ...
GNUHOST= i386-freebsdelf
.else
GNUHOST= i386-freebsd
.endif

You had a situation where GNUHOST is defined twice, either for the
a.out and ELF case, with different values before and after bsd.port.mk
in both cases.  That's just not going to work. ;)

Satoshi



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199810090829.BAA00634>