Remove ineffective LINKFLAGS assignment

This commit is contained in:
Kp 2013-02-24 23:34:10 +00:00
parent dbf90c43db
commit 96bf0f5bee

View file

@ -367,10 +367,6 @@ for cc in ['CC', 'CXX']:
for flags in ['CFLAGS', 'CXXFLAGS']:
if os.environ.has_key(flags):
env[flags] += SCons.Util.CLVar(os.environ[flags])
# Special case because scons uses the name LINKFLAGS instead of the
# standard LDFLAGS.
if os.environ.has_key('LDFLAGS'):
env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
# windows or *nix?
if sys.platform == 'win32':