diff options
author | ru <ru@FreeBSD.org> | 2001-09-22 08:11:24 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-09-22 08:11:24 +0000 |
commit | 15e67804a71c0c234f50dd6f40f71dc1c5eb63d3 (patch) | |
tree | e3b28d14c1cc1236ddb7eca381dc625d8fcacb42 /lib/compat | |
parent | 6814b5befeca2a3eb01fdb9e8103a8dd237f2c22 (diff) | |
download | FreeBSD-src-15e67804a71c0c234f50dd6f40f71dc1c5eb63d3.zip FreeBSD-src-15e67804a71c0c234f50dd6f40f71dc1c5eb63d3.tar.gz |
Reset ``schg'' flag before removing stale libs.
Diffstat (limited to 'lib/compat')
-rw-r--r-- | lib/compat/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compat/Makefile.inc b/lib/compat/Makefile.inc index 99222aa..206c437 100644 --- a/lib/compat/Makefile.inc +++ b/lib/compat/Makefile.inc @@ -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 |