Changeset 805


Ignore:
Timestamp:
06/01/07 10:53:34 (5 years ago)
Author:
wd
Message:

Upgrading SCons to 0.97

Location:
trunk/ithildin/build
Files:
160 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ithildin/build/scons-LICENSE

    r787 r805  
    44        with which this software may have been included. 
    55 
    6 Copyright (c) 2001, 2002, 2003, 2004 The SCons Foundation 
     6Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007 The SCons Foundation 
    77 
    88Permission is hereby granted, free of charge, to any person obtaining 
  • trunk/ithildin/build/scons-README

    r787 r805  
    1 # Copyright (c) 2001, 2002, 2003, 2004 The SCons Foundation 
     1# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007 The SCons Foundation 
    22 
    33                 SCons - a software construction tool 
  • trunk/ithildin/build/scons.py

    r796 r805  
    33# SCons - a Software Constructor 
    44# 
    5 # Copyright (c) 2001, 2002, 2003, 2004 The SCons Foundation 
     5# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007 The SCons Foundation 
    66# 
    77# Permission is hereby granted, free of charge, to any person obtaining 
     
    2525# 
    2626 
    27 __revision__ = "/home/scons/scons/branch.0/branch.96/baseline/src/script/scons.py 0.96.93.D001 2006/11/06 08:31:54 knight" 
     27__revision__ = "/home/scons/scons/branch.0/baseline/src/script/scons.py 0.97.D001 2007/05/17 11:35:19 knight" 
    2828 
    29 __version__ = "0.96.93" 
     29__version__ = "0.97" 
    3030 
    3131__build__ = "D001" 
     
    3333__buildsys__ = "roxbury" 
    3434 
    35 __date__ = "2006/11/06 08:31:54" 
     35__date__ = "2007/05/17 11:35:19" 
    3636 
    3737__developer__ = "knight" 
     
    7070if script_dir: 
    7171    local = os.path.join(script_dir, local) 
    72 libs.append(local) 
     72libs.append(os.path.abspath(local)) 
    7373 
    7474scons_version = 'scons-%s' % __version__ 
  • trunk/ithildin/build/sconsign.py

    r796 r805  
    33# SCons - a Software Constructor 
    44# 
    5 # Copyright (c) 2001, 2002, 2003, 2004 The SCons Foundation 
     5# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007 The SCons Foundation 
    66# 
    77# Permission is hereby granted, free of charge, to any person obtaining 
     
    2525# 
    2626 
    27 __revision__ = "/home/scons/scons/branch.0/branch.96/baseline/src/script/sconsign.py 0.96.93.D001 2006/11/06 08:31:54 knight" 
    28  
    29 __version__ = "0.96.93" 
     27__revision__ = "/home/scons/scons/branch.0/baseline/src/script/sconsign.py 0.97.D001 2007/05/17 11:35:19 knight" 
     28 
     29__version__ = "0.97" 
    3030 
    3131__build__ = "D001" 
     
    3333__buildsys__ = "roxbury" 
    3434 
    35 __date__ = "2006/11/06 08:31:54" 
     35__date__ = "2007/05/17 11:35:19" 
    3636 
    3737__developer__ = "knight" 
     
    7171if script_dir: 
    7272    local = os.path.join(script_dir, local) 
    73 libs.append(local) 
     73libs.append(os.path.abspath(local)) 
    7474 
    7575scons_version = 'scons-%s' % __version__ 
     
    167167 
    168168def my_whichdb(filename): 
     169    if filename[-7:] == ".dblite": 
     170        return "SCons.dblite" 
    169171    try: 
    170172        f = open(filename + ".dblite", "rb") 
Note: See TracChangeset for help on using the changeset viewer.