Date: Thu, 27 Nov 2014 09:40:37 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275181 - projects/building-blocks/tools Message-ID: <201411270940.sAR9ebvc024235@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Thu Nov 27 09:40:36 2014 New Revision: 275181 URL: https://svnweb.freebsd.org/changeset/base/275181 Log: Filter out /lib, /usr/lib32, and fold the /usr/lib* checks into one expression Modified: projects/building-blocks/tools/add-optional-obsolete-files-entries.sh Modified: projects/building-blocks/tools/add-optional-obsolete-files-entries.sh ============================================================================== --- projects/building-blocks/tools/add-optional-obsolete-files-entries.sh Thu Nov 27 09:17:42 2014 (r275180) +++ projects/building-blocks/tools/add-optional-obsolete-files-entries.sh Thu Nov 27 09:40:36 2014 (r275181) @@ -52,6 +52,6 @@ done sed -e 's,^,OLD_FILES+=,' \ -e '/lib\/.*\.so\.[0-9]\.*/s/OLD_FILES+=/OLD_LIBS+=/g'; find -d -s . -type d -mindepth 1 -and \! -empty | \ - egrep -v '^\./(boot|s*bin|libexec|usr|usr/include|usr/lib(data)?|usr/libdata/pkgconfig|usr/lib/private|usr/libexec|usr/s*bin|usr/share|usr/share/(examples|man)|usr/share/man/man[0-9])$' | \ + egrep -v '^\./(boot|s*bin|lib|libexec|usr|usr/include|usr/lib(32|data|exec)?|usr/libdata/pkgconfig|usr/lib/private|usr/s*bin|usr/share|usr/share/(examples|man)|usr/share/man/man[0-9])$' | \ sed -e 's,^,OLD_DIRS+=,' ) | sed -e 's,+=\./,+=,'
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411270940.sAR9ebvc024235>