From f298e4ff408ca5fdfce0bcde14e8212289492320 Mon Sep 17 00:00:00 2001
From: g0dil <g0dil@wiback.org>
Date: Thu, 13 Sep 2007 14:17:57 +0000
Subject: [PATCH] Fix dircopy for SCons V0.96.1

---
 senfscons/SENFSCons.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/senfscons/SENFSCons.py b/senfscons/SENFSCons.py
index 40939cb23..d2a170a4d 100644
--- a/senfscons/SENFSCons.py
+++ b/senfscons/SENFSCons.py
@@ -500,8 +500,8 @@ def Doxygen(env, doxyfile = "Doxyfile", extra_sources = []):
     l = len(env.Dir('#').abspath)
     if htmlnode:
         env.Alias('install_all',
-                  env.Install( '$DOCINSTALLDIR' + htmlnode.dir.dir.abspath[l:],
-                               htmlnode.dir ))
+                  env.Command('$DOCINSTALLDIR' + htmlnode.dir.abspath[l:], htmlnode.dir,
+                              [ SCons.Defaults.Copy('$TARGET','$SOURCE') ]))
     if tagnode:
         env.Alias('install_all',
                   env.Install( '$DOCINSTALLDIR' + tagnode.dir.abspath[l:],
-- 
GitLab