From 1cb6f26c0a7b3f004caf798c72ef77710f24db9f Mon Sep 17 00:00:00 2001 From: Zhang Qiang Date: Wed, 31 Oct 2012 15:36:50 +0800 Subject: [PATCH] change ccache option as bool type Change-Id: Ia21883b0d6817b3c3e2ebd367bc466913c56685f --- depanneur | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/depanneur b/depanneur index 34094dd..4ddd65f 100755 --- a/depanneur +++ b/depanneur @@ -154,7 +154,7 @@ GetOptions ( "no-configure" => \$run_configure, "threads=s" => \$MAX_THREADS, "extra-packs=s" => \$extra_packs, - "ccache=s" => \$ccache, + "ccache" => \$ccache, ); if ( $help ) { @@ -517,6 +517,7 @@ sub prepare_git { if (!$skip || $includeall == 1) { # Set cache_rev as 'include-all' if --include-all specified my $val = ($includeall == 1) ? "include-all" : $current_rev; + info("start export source from: $base ..."); unless (write_cache($cache_key, $val, $base, $spec)) { clean_cache($cache_key); debug("$pkg_name was not exported correctly"); -- 2.34.1