From 42fce6372e3c42e8bf2b9ee34fcc190aa87e4e6a Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 15 Mar 1998 04:52:58 +0000 Subject: [PATCH] Don't force NOPIC for building tools at all for now, so that some (slightly stale) shared libraries get installed before non-tools are linked. The 2-stage build of the libraries has never really worked, since we link to the libraries built in the first stage. --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ee91a1c27922..ebec3f8b754f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.163 1998/03/13 09:41:58 bde Exp $ +# $Id: Makefile,v 1.164 1998/03/14 13:58:21 bde Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -141,11 +141,12 @@ SUPFLAGS?= -v # shared or profiled libraries, shared linkage, or documentation, except # when the tools won't get cleaned we must use the defaults for shared # libraries and shared linkage (and this doesn't waste time). +# XXX actually, we do need to waste time building shared libraries. # .if defined(NOCLEAN) -MK_FLAGS= -DNOINFO -DNOMAN -DNOPROFILE +MK_FLAGS= -DNOINFO -DNOMAN -DNOPROFILE .else -MK_FLAGS= -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED +MK_FLAGS= -DNOINFO -DNOMAN -DNOPROFILE -DNOSHARED .endif #