Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Oct 1998 16:00:07 +0200
From:      Daniel Rock <rock@cs.uni-sb.de>
To:        "Marc G. Fournier" <scrappy@hub.org>
Cc:        Alex Zepeda <garbanzo@hooked.net>, freebsd-current@FreeBSD.ORG
Subject:   Re: Invalid option for compiler...?
Message-ID:  <362DE8E7.6D31C492@cs.uni-sb.de>
References:  <Pine.BSF.4.05.9810210905390.4514-100000@hub.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Marc G. Fournier schrieb:
>         I generally do the 'make world' after I know the kernel is going
> to run on my platform...I've already done the 'make buildworld', but need
> to get a kernel built and reboot'd into first.
> 
>         How do I get rid of the -fformat-extensions -Werror flags?  I've
> checked /usr/share/mk/*, /etc/make.conf,
> /usr/src/sys/i386/conf/Makefile.i386, and can't find it defined in any of
> those places...which place am I missing?
The kernel Makefile first tries to include <SRCDIR>/share/mk/bsd.kern.mk.
It only includes /usr/src/share/mk/bsd.kern.mk, if <SRCDIR>/share/mk
doesn't exist:

.if exists($S/../share/mk)
.include "$S/../share/mk/bsd.kern.mk"
.else
.include <bsd.kern.mk>
.endif

Daniel

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?362DE8E7.6D31C492>