From owner-svn-src-stable@FreeBSD.ORG Thu Aug 27 17:16:24 2009 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51D87106568D; Thu, 27 Aug 2009 17:16:24 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 36E798FC4D; Thu, 27 Aug 2009 17:16:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n7RHGOS7002503; Thu, 27 Aug 2009 17:16:24 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n7RHGOXm002500; Thu, 27 Aug 2009 17:16:24 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200908271716.n7RHGOXm002500@svn.freebsd.org> From: John Baldwin Date: Thu, 27 Aug 2009 17:16:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r196594 - in stable/8/release: . doc scripts X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Aug 2009 17:16:24 -0000 Author: jhb Date: Thu Aug 27 17:16:23 2009 New Revision: 196594 URL: http://svn.freebsd.org/changeset/base/196594 Log: MFC 196521: Fix a few issues with the lib32 dist so that it includes ldd32. - Use a better find invocation to purge empty directories from all the dist trees during a release build. The previous version did not purge directories whose contents were all empty directories. - Explicitly blacklist a few files from the lib32 dist instead of using a whitelist. A better longterm solution is to fix the few offenders to not install data files during a lib32 install. Approved by: re (kib) Modified: stable/8/release/ (props changed) stable/8/release/Makefile stable/8/release/doc/ (props changed) stable/8/release/scripts/lib32-make.sh Modified: stable/8/release/Makefile ============================================================================== --- stable/8/release/Makefile Thu Aug 27 16:34:04 2009 (r196593) +++ stable/8/release/Makefile Thu Aug 27 17:16:23 2009 (r196594) @@ -696,7 +696,7 @@ release.5: # Remove all the directories we don't need. -cd ${RD}/trees && \ (find ${OTHER_DISTS} -path '*/var/empty' | xargs chflags noschg; \ - find ${OTHER_DISTS} -depth -type d -empty -print | xargs rmdir) + find ${OTHER_DISTS} -depth -type d -empty -delete) touch ${.TARGET} # Modified: stable/8/release/scripts/lib32-make.sh ============================================================================== --- stable/8/release/scripts/lib32-make.sh Thu Aug 27 16:34:04 2009 (r196593) +++ stable/8/release/scripts/lib32-make.sh Thu Aug 27 17:16:23 2009 (r196594) @@ -5,4 +5,4 @@ # Clean the dust. cd ${RD}/trees/lib32 && \ - find . ! -path '*/libexec/*' ! -path '*/usr/lib32/*' -delete + find . '(' -path '*/usr/share/*' -or -path '*/usr/lib/*' ')' -delete