svn commit: r273780 - in head: . etc/mtree

Ed Maste emaste at FreeBSD.org
Tue Oct 28 14:48:54 UTC 2014


Author: emaste
Date: Tue Oct 28 14:48:52 2014
New Revision: 273780
URL: https://svnweb.freebsd.org/changeset/base/273780

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.

Modified:
  head/ObsoleteFiles.inc
  head/etc/mtree/BSD.debug.dist

Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc	Tue Oct 28 14:19:17 2014	(r273779)
+++ head/ObsoleteFiles.inc	Tue Oct 28 14:48:52 2014	(r273780)
@@ -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
 # 20140922: sleepq_calc_signal_retval.9 and sleepq_catch_signals.9 removed

Modified: head/etc/mtree/BSD.debug.dist
==============================================================================
--- head/etc/mtree/BSD.debug.dist	Tue Oct 28 14:19:17 2014	(r273779)
+++ head/etc/mtree/BSD.debug.dist	Tue Oct 28 14:48:52 2014	(r273780)
@@ -26,8 +26,16 @@
             lib
                 engines
                 ..
+                i18n
+                ..
+                private
+                ..
             ..
             lib32
+                i18n
+                ..
+                private
+                ..
             ..
             libexec
                 bsdinstall


More information about the svn-src-all mailing list