Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Feb 2024 18:25:31 GMT
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: f96dd1e361f8 - stable/13 - Proactively remove /usr/lib/kgdb file that became a directory
Message-ID:  <202402201825.41KIPVtj092441@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=f96dd1e361f8e452a31b9928d1c0959eb6be6f27

commit f96dd1e361f8e452a31b9928d1c0959eb6be6f27
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2024-02-17 11:27:33 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2024-02-20 18:22:57 +0000

    Proactively remove /usr/lib/kgdb file that became a directory
    
    This was already handled in ObsoleteFiles.inc (see the 20201215 entry),
    but some people never run "make delete-old", or want to upgrade directly
    from a revision that still had the file to the most recent revision.
    
    They would then encounter a failure during installworld, similar to:
    
      install: /usr/libexec/kgdb exists but is not a directory
    
    Therefore, clean it up in the distrib-cleanup phase, similar to the
    earlier instances of libc++ header files that became a directory.
    
    MFC after:      3 days
    
    (cherry picked from commit e368e9b756772264acdbc11f3cc1d223bcd48dee)
---
 etc/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/etc/Makefile b/etc/Makefile
index 9b4b7c93d10a..05632e8ce710 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -125,6 +125,7 @@ MTREES+=	../${mtree}			/
 # scenario.
 DISTRIB_CLEANUP_FILES+=	${INCLUDEDIR}/c++/v1/__string
 DISTRIB_CLEANUP_FILES+=	${INCLUDEDIR}/c++/v1/__tuple
+DISTRIB_CLEANUP_FILES+=	${LIBEXECDIR}/kgdb
 distrib-cleanup: .PHONY
 	for file in ${DISTRIB_CLEANUP_FILES}; do \
 		if [ -f ${DESTDIR}/$${file} ]; then \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402201825.41KIPVtj092441>