From owner-freebsd-current Mon Jan 22 15:23:31 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id PAA26842 for current-outgoing; Mon, 22 Jan 1996 15:23:31 -0800 (PST) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id PAA26833 Mon, 22 Jan 1996 15:23:26 -0800 (PST) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.6.12/8.6.12) with ESMTP id PAA23747; Mon, 22 Jan 1996 15:22:54 -0800 Message-Id: <199601222322.PAA23747@austin.polstra.com> To: -Vince- cc: Andreas Klemm , Dima Ruban , Nate Williams , dtc@scrooge.ee.swin.oz.au, sos@freebsd.org, current@freebsd.org Subject: Re: problems in -current (was Re: awk broken ???) In-reply-to: Your message of "Mon, 22 Jan 1996 14:47:07 PST." Date: Mon, 22 Jan 1996 15:22:53 -0800 From: John Polstra Sender: owner-current@freebsd.org Precedence: bulk > Hmmm, what did you guys do to fix this problem? Get the newest /usr/share/mk/bsd.lib.mk, or apply this patch to the broken one: ------------------------------------------------------------------------------- Index: src/share/mk/bsd.lib.mk diff -c src/share/mk/bsd.lib.mk:1.28 src/share/mk/bsd.lib.mk:1.29 *** src/share/mk/bsd.lib.mk:1.28 Tue Jan 16 16:03:08 1996 --- src/share/mk/bsd.lib.mk Sun Jan 21 09:26:25 1996 *************** *** 1,5 **** # from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91 ! # $Id: bsd.lib.mk,v 1.28 1996/01/17 00:03:08 jdp Exp $ # .if exists(${.CURDIR}/../Makefile.inc) --- 1,5 ---- # from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91 ! # $Id: bsd.lib.mk,v 1.29 1996/01/21 17:26:25 jdp Exp $ # .if exists(${.CURDIR}/../Makefile.inc) *************** *** 187,193 **** .endif .if !defined(NOPIC) ! .if !make(clean) && !make(cleandir) SOBJS+= ${DESTDIR}/usr/lib/c++rt0.o .endif --- 187,193 ---- .endif .if !defined(NOPIC) ! .if defined(CPLUSPLUSLIB) && !make(clean) && !make(cleandir) SOBJS+= ${DESTDIR}/usr/lib/c++rt0.o .endif ------------------------------------------------------------------------------- Rebuild and install all your shared libraries. You don't really need to recompile the objects making up each shared library. All you need to redo is the actual step that builds the library itself from its consituent objects. -- John