From a788145cf0d0e87d1f279fb43c48bfec21dedcd7 Mon Sep 17 00:00:00 2001
From: Steven Knight <knight@baldmt.com>
Date: Wed, 9 Oct 2002 21:06:16 +0000
Subject: Allow build/doc/version.sgml to be created on build even if the
 build/doc/ subdirectory doesn't exist.

---
 doc/SConscript | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/doc/SConscript b/doc/SConscript
index 229cf25..29801ef 100644
--- a/doc/SConscript
+++ b/doc/SConscript
@@ -1,8 +1,6 @@
 #
 # SConscript file for building SCons documentation.
 #
-# THIS IS NOT READY YET.  DO NOT TRY TO BUILD SCons WITH ITSELF YET.
-#
 
 #
 # Copyright (c) 2001, 2002 Steven Knight
@@ -109,8 +107,13 @@ if jw:
     verfile = str(File("version.sgml"))
     try:
         os.unlink(verfile)
-    except:
-        pass
+    except OSError:
+        pass    # okay if the file didn't exist
+    dir, f = os.path.split(verfile)
+    try:
+        os.makedirs(dir)
+    except OSError:
+        pass	# okay if the directory already exists
     open(verfile, "w").write("""<!--
 THIS IS AN AUTOMATICALLY-GENERATED FILE.  DO NOT EDIT.
 -->
-- 
cgit v0.12