--- trunk/doc/doxygen/SConscript 2006/02/02 06:19:23 488 +++ trunk/doc/doxygen/SConscript 2006/02/07 01:53:47 498 @@ -13,7 +13,7 @@ rundoxygen_script = open(str(File(esysroot+"/doc/doxygen/rundoxygen")), 'w') rundoxygen_script.write(str("#!/bin/bash\n")) -rundoxygen_script.write(str(doxygen_path+"/doxygen doxygen/doxygen_esys > doxygen_msgs.txt 2>&1\n")) +rundoxygen_script.write(str(doxygen_path+"/doxygen doxygen/doxygen_esys > "+esysroot+"/doc/doxygen_msgs.txt 2>&1\n")) rundoxygen_script.close() os.chmod(str(File(esysroot+"/doc/doxygen/rundoxygen")), 0700) @@ -30,4 +30,5 @@ runDoxygen_builder = Builder(action = scons_extensions.build_doxygen, suffix = ".run", single_source = True) doxygen_env.Append(BUILDERS = {'RunDoxygen' : runDoxygen_builder}) -Default(doxygen_env.RunDoxygen(source)) +Alias("build_docs", doxygen_env.RunDoxygen(source)) +Default()