diff options
Diffstat (limited to 'cmd/mbf/cache.go')
| -rw-r--r-- | cmd/mbf/cache.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/mbf/cache.go b/cmd/mbf/cache.go index 5c89ca10..05fa7070 100644 --- a/cmd/mbf/cache.go +++ b/cmd/mbf/cache.go @@ -21,6 +21,7 @@ type cache struct { cures, jobs int hostAbstract, idle bool + verboseInit bool base string } @@ -45,6 +46,9 @@ func (cache *cache) open() (err error) { if cache.hostAbstract { flags |= pkg.CHostAbstract } + if !cache.verboseInit { + flags |= pkg.CSuppressInit + } done := make(chan struct{}) defer close(done) |
