svn commit: r274344 - in stable/10: . etc/mtree

Ed Maste emaste at FreeBSD.org
Mon Nov 10 14:26:57 UTC 2014


Author: emaste
Date: Mon Nov 10 14:26:56 2014
New Revision: 274344
URL: https://svnweb.freebsd.org/changeset/base/274344

Log:
  Add missing /usr/lib/debug directories
  
  Directories for /usr/lib{,32}/{i18n,private} were missing from the mtree
  file, which caused installworld to install the files that should be in
  the directory as the name of the directory.
  
  MFC of r273780

Modified:
  stable/10/ObsoleteFiles.inc
  stable/10/etc/mtree/BSD.debug.dist
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/ObsoleteFiles.inc
==============================================================================
--- stable/10/ObsoleteFiles.inc	Mon Nov 10 14:11:17 2014	(r274343)
+++ stable/10/ObsoleteFiles.inc	Mon Nov 10 14:26:56 2014	(r274344)
@@ -38,6 +38,11 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20141028: debug files accidentally installed as directory name
+OLD_FILES+=usr/lib/debug/usr/lib/i18n
+OLD_FILES+=usr/lib/debug/usr/lib/private
+OLD_FILES+=usr/lib/debug/usr/lib32/i18n
+OLD_FILES+=usr/lib/debug/usr/lib32/private
 # 20141015: OpenSSL 1.0.1j import
 OLD_FILES+=usr/share/openssl/man/man3/CMS_sign_add1_signer.3.gz
 # 20141010: rc.d/kerberos removed

Modified: stable/10/etc/mtree/BSD.debug.dist
==============================================================================
--- stable/10/etc/mtree/BSD.debug.dist	Mon Nov 10 14:11:17 2014	(r274343)
+++ stable/10/etc/mtree/BSD.debug.dist	Mon Nov 10 14:26:56 2014	(r274344)
@@ -26,8 +26,16 @@
             lib
                 engines
                 ..
+                i18n
+                ..
+                private
+                ..
             ..
             lib32
+                i18n
+                ..
+                private
+                ..
             ..
             libexec
                 bsdinstall


More information about the svn-src-stable-10 mailing list