Date: Fri, 5 Jul 2002 06:00:07 -0700 (PDT) From: David Schultz <dschultz@uclink.Berkeley.EDU> To: freebsd-bugs@FreeBSD.org Subject: Re: bin/40047: "make release" fails in games/adventure (yesterday's RELENG_4) Message-ID: <200207051300.g65D07gV012084@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/40047; it has been noted by GNATS.
From: David Schultz <dschultz@uclink.Berkeley.EDU>
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207051300.g65D07gV012084>
