From: 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.9~77 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=41c8b75731ab12cc7172da309d45ea20f1f77538;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'))