From: Pedro Kroger Date: Sun, 18 Jul 2004 12:43:38 +0000 (+0000) Subject: Create out-scons/buildcache if it doesn't exist. X-Git-Tag: release/2.3.7~19 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=956588094884eb5a6f3c2571536d1758754cf635;p=lilypond.git Create out-scons/buildcache if it doesn't exist. --- diff --git a/SConstruct b/SConstruct index 42b93c0a72..63d9a4e2c0 100644 --- a/SConstruct +++ b/SConstruct @@ -194,6 +194,10 @@ version_hh = os.path.join (outdir, 'version.hh') env.Alias ('config', config_cache) +cachedir = os.path.join (outdir, 'build-cache') + +if not os.path.exists(cachedir): + os.makedirs(cachedir) CacheDir (os.path.join (outdir, 'build-cache'))