ソースを参照

[scons] remove check whether exist group library.

aozima 6 年 前
コミット
0fbd8bf167
1 ファイル変更0 行追加8 行削除
  1. 0 8
      tools/building.py

+ 0 - 8
tools/building.py

@@ -585,14 +585,6 @@ def DefineGroup(name, src, depend, **parameters):
             if os.path.exists(fn):
                 os.unlink(fn)
 
-    # check whether exist group library
-    if not GetOption('buildlib') and os.path.exists(os.path.join(group['path'], GroupLibFullName(name, Env))):
-        group['src'] = []
-        if group.has_key('LIBS'): group['LIBS'] = group['LIBS'] + [GroupLibName(name, Env)]
-        else : group['LIBS'] = [GroupLibName(name, Env)]
-        if group.has_key('LIBPATH'): group['LIBPATH'] = group['LIBPATH'] + [GetCurrentDir()]
-        else : group['LIBPATH'] = [GetCurrentDir()]
-
     if group.has_key('LIBS'):
         Env.AppendUnique(LIBS = group['LIBS'])
     if group.has_key('LIBPATH'):