From owner-freebsd-bugs Fri Jul 5 6: 0:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D06D37B401 for ; Fri, 5 Jul 2002 06:00:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E21CC43E4A for ; Fri, 5 Jul 2002 06:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g65D07JU012085 for ; Fri, 5 Jul 2002 06:00:07 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g65D07gV012084; Fri, 5 Jul 2002 06:00:07 -0700 (PDT) Date: Fri, 5 Jul 2002 06:00:07 -0700 (PDT) Message-Id: <200207051300.g65D07gV012084@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: David Schultz Subject: Re: bin/40047: "make release" fails in games/adventure (yesterday's RELENG_4) Reply-To: David Schultz Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/40047; it has been noted by GNATS. From: David Schultz To: freebsd-gnats-submit@FreeBSD.org, trevor@FreeBSD.org Cc: Subject: Re: bin/40047: "make release" fails in games/adventure (yesterday's RELENG_4) Date: Fri, 5 Jul 2002 05:54:39 -0700 The following patch should fix the problem. The compat libraries are installed in /usr/lib/compat, but they were being cleaned from /usr/lib. --- src/lib/compat/Makefile.inc 2002/04/18 06:46:34 1.9 +++ src/lib/compat/Makefile.inc 2002/07/05 12:52:18 @@ -7,9 +7,9 @@ beforeinstall: __remove-stale-libs __remove-stale-libs: .PHONY .for lib in ${LIBS} -.if exists(${DESTDIR}${SHLIBDIR}/${lib}) - -chflags noschg ${DESTDIR}${SHLIBDIR}/${lib} - rm -f ${DESTDIR}${SHLIBDIR}/${lib} +.if exists(${DESTDIR}${LIBCOMPATDIR}/${lib}) + -chflags noschg ${DESTDIR}${LIBCOMPATDIR}/${lib} + rm -f ${DESTDIR}${LIBCOMPATDIR}/${lib} .endif .endfor .endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message