diff options
| author | Steven Knight <knight@baldmt.com> | 2003-03-28 03:29:11 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2003-03-28 03:29:11 (GMT) |
| commit | e94e7726d2602503cd6ea7ba1acb37558821827e (patch) | |
| tree | 3c312aac30b8d44b5e898a1ff9ec15b5003b98e7 /test/Options.py | |
| parent | f63429682eca0f75ba22c2e01f155bb8d986bd85 (diff) | |
| download | SCons-e94e7726d2602503cd6ea7ba1acb37558821827e.zip SCons-e94e7726d2602503cd6ea7ba1acb37558821827e.tar.gz SCons-e94e7726d2602503cd6ea7ba1acb37558821827e.tar.bz2 | |
Fix erroneous dependency-cycle errors when an Alias source doesn't exist. (Anthony Roach)
Diffstat (limited to 'test/Options.py')
| -rw-r--r-- | test/Options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Options.py b/test/Options.py index a34e5ca..4f979df 100644 --- a/test/Options.py +++ b/test/Options.py @@ -33,7 +33,7 @@ test.write('SConstruct', """ env = Environment() print env['CC'] print env['CCFLAGS'] -Default(env.Alias('dummy')) +Default(env.Alias('dummy', None)) """) test.run() cc, ccflags = string.split(test.stdout(), '\n')[1:3] @@ -87,7 +87,7 @@ opts = Options() opts.Update(env) assert env['RELEASE_BUILD'] == r -Default(env.Alias('dummy')) +Default(env.Alias('dummy', None)) """) |
