From patchwork Sun Jun 17 05:40:04 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Consolidated,Pull,20/23] cleanup-workdir: update help text Date: Sun, 17 Jun 2012 05:40:04 -0000 From: Saul Wold X-Patchwork-Id: 30035 Message-Id: To: openembedded-core@lists.openembedded.org From: Kang Kai Update the help text to tell user that the files and dirs under WORKDIR which are not created by Yocto will be deleted. Signed-off-by: Kang Kai --- scripts/cleanup-workdir | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/cleanup-workdir b/scripts/cleanup-workdir index 156a259..c748846 100755 --- a/scripts/cleanup-workdir +++ b/scripts/cleanup-workdir @@ -65,8 +65,11 @@ def main(): parser = optparse.OptionParser( usage = """%prog -Remove the obsolete packages' build directories in WORKDIR. -This script must be ran under BUILDDIR after source file \"oe-init-build-env\".""") +%prog removes the obsolete packages' build directories in WORKDIR. +This script must be ran under BUILDDIR after source file \"oe-init-build-env\". + +Any file or directory under WORKDIR which is not created by Yocto +will be deleted. Be CAUTIOUS.""") options, args = parser.parse_args(sys.argv)