From owner-cvs-src@FreeBSD.ORG Sat May 17 17:27:55 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2DC137B407 for ; Sat, 17 May 2003 17:27:55 -0700 (PDT) Received: from mail.gmx.net (imap.gmx.net [213.165.65.60]) by mx1.FreeBSD.org (Postfix) with SMTP id 34BC143F93 for ; Sat, 17 May 2003 17:27:53 -0700 (PDT) (envelope-from tmoestl@gmx.net) Received: (qmail 31979 invoked by uid 65534); 18 May 2003 00:27:52 -0000 Received: from p508E67F7.dip.t-dialin.net (EHLO galatea.local) (80.142.103.247) by mail.gmx.net (mp002-rz3) with SMTP; 18 May 2003 02:27:52 +0200 Received: from tmm by galatea.local with local (Exim 4.20 #1) id 19HC1z-0005Q4-Uz; Sun, 18 May 2003 02:28:04 +0200 Date: Sun, 18 May 2003 02:28:02 +0200 From: Thomas Moestl To: Ruslan Ermilov Message-ID: <20030518002801.GA45281@crow.dom2ip.de> References: <200305172307.h4HN79N2003600@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305172307.h4HN79N2003600@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Sender: Thomas Moestl cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 May 2003 00:27:56 -0000 On Sat, 2003/05/17 at 16:07:09 -0700, Ruslan Ermilov wrote: > ru 2003/05/17 16:07:09 PDT > > FreeBSD src repository > > Modified files: > . Makefile.inc1 > Log: > Unbreak world: record libgeom dependency on libbsdxml here too. > > Forgotten by: ru > Submitted by: des > Verified by: tools/make_libdeps.sh > Approved by: re (scottl) (related change) The Makefile for libbsdxml resides in src/lib/libexpat, not in src/lib/libbsdxml, so this is still broken; the attached patch should fix it (my buildworld hasn't completed yet though, but it should be past the critical spot). - Thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C Index: Makefile.inc1 =================================================================== RCS file: /vol/ncvs/src/Makefile.inc1,v retrieving revision 1.358 diff -u -r1.358 Makefile.inc1 --- Makefile.inc1 17 May 2003 23:07:09 -0000 1.358 +++ Makefile.inc1 18 May 2003 00:13:12 -0000 @@ -789,7 +789,7 @@ _generic_libs+= kerberos5/lib .endif -_prebuild_libs+= lib/libbsdxml lib/libcom_err lib/libcrypt \ +_prebuild_libs+= lib/libcom_err lib/libcrypt lib/libexpat \ lib/libkvm lib/libmd \ lib/libncurses lib/libopie lib/libpam lib/libradius \ lib/librpcsvc \