- Fix the ASPPCOM values for the GNU assembler.
(Bug reported by Brett Polivka.)
+ - Fix an exception thrown when a Default() directory was specified
+ when using the -U option.
+
From Anthony Roach:
- Fixed use of command lines with spaces in their arguments,
self.entries = {}
self.entries['.'] = self
self.entries['..'] = self.dir
+ self.cwd = self
self.builder = 1
self._sconsign = None
fs = SCons.Node.FS.FS()
d1 = fs.Dir('d1')
+ assert d1.cwd is d1, d1
f1 = fs.File('f1', directory = d1)
test.fail_test(os.path.exists(test.workpath('sub2/xxx.out')))
+# Make sure that a Default() directory doesn't cause an exception.
+test.subdir('sub4')
+
+test.write(['sub4', 'SConstruct'], """
+Default('.')
+""")
+
+test.run(chdir = 'sub4', arguments = '-U')
+
+
test.pass_test()