From 79f9a1efb5ef04703e7491a80583aa9dcc293ff1 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 14 Jan 2005 23:44:08 +0000 Subject: Set cache_file to "" if --no-cache is used. --- config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.cc') diff --git a/config.cc b/config.cc index d1a5096a..b8c5ef01 100644 --- a/config.cc +++ b/config.cc @@ -586,7 +586,7 @@ OPT_BEGIN(cache, ":") { } OPT_END(cache); OPT_BEGIN(no_cache, "") { - config.cache_file = ""; + config.cache_file = ""; } OPT_END(no_cache); OPT_BEGIN(output, "o:") { -- cgit v1.2.3