1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Reset ``schg'' flag before removing stale libs.

This commit is contained in:
Ruslan Ermilov 2001-09-22 08:11:24 +00:00
parent 7fb452755c
commit e8cb411be5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83811

View File

@ -7,6 +7,7 @@ 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}
.endif
.endfor