--- ray/SConstruct 2008/12/26 17:00:32 1.8 +++ ray/SConstruct 2016/03/05 00:25:21 1.12 @@ -23,6 +23,7 @@ def set_opts(env): def allplats_setup(env): from build_utils import find_libs + find_libs.find_radlib(env) find_libs.find_x11(env) find_libs.find_gl(env) # OpenGL find_libs.find_libtiff(env) @@ -47,9 +48,9 @@ env.Decider('timestamp-match') if os.name == 'posix': from build_utils import install - csh_b = Builder(action = install.install_cshscript, + csh_b = Builder(action = install.install_script, suffix = '', src_suffix = '.csh') - env.Append(BUILDERS={'InstallCsh': csh_b}) + env.Append(BUILDERS={'InstallScript': csh_b}) # configure platform-specific stuff from build_utils import load_plat @@ -67,7 +68,6 @@ if ((not env['SKIP'] # fill in generic config allplats_setup(env) - # Bring in all the actual things to build Export('env')