From 41c8b75731ab12cc7172da309d45ea20f1f77538 Mon Sep 17 00:00:00 2001 From: kroger Date: Sun, 18 Jul 2004 12:43:38 +0000 Subject: [PATCH] Create out-scons/buildcache if it doesn't exist. --- SConstruct | 4 ++++ 1 file changed, 4 insertions(+) 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')) -- 2.39.5